Skip to content

Instantly share code, notes, and snippets.

@coderunner
Created September 20, 2011 00:22
Show Gist options
  • Select an option

  • Save coderunner/1227984 to your computer and use it in GitHub Desktop.

Select an option

Save coderunner/1227984 to your computer and use it in GitHub Desktop.

Revisions

  1. coderunner revised this gist Sep 20, 2011. 1 changed file with 4 additions and 2 deletions.
    6 changes: 4 additions & 2 deletions gistfile1.java
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,7 @@
    public interface StatelessProcessor
    {
    public void processRequest(HttpRequest request, ProcessorContext context);
    public void processResponse(HttpResponse response, ProcessorContext context);
    public void processRequest(HttpRequest request,
    ProcessorContext context);
    public void processResponse(HttpResponse response,
    ProcessorContext context);
    }
  2. coderunner created this gist Sep 20, 2011.
    5 changes: 5 additions & 0 deletions gistfile1.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    public interface StatelessProcessor
    {
    public void processRequest(HttpRequest request, ProcessorContext context);
    public void processResponse(HttpResponse response, ProcessorContext context);
    }