Uses of Interface
org.codehaus.spice.netserve.connection.RequestHandler

Packages that use RequestHandler
org.codehaus.spice.netserve.connection   
org.codehaus.spice.netserve.connection.handlers   
org.codehaus.spice.netserve.connection.impl   
 

Uses of RequestHandler in org.codehaus.spice.netserve.connection
 

Methods in org.codehaus.spice.netserve.connection with parameters of type RequestHandler
 void SocketAcceptorManager.connect(String name, ServerSocket socket, RequestHandler handler)
          Start accepting connections from a socket and passing connections to specified handler.
 

Uses of RequestHandler in org.codehaus.spice.netserve.connection.handlers
 

Classes in org.codehaus.spice.netserve.connection.handlers that implement RequestHandler
 class AbstractRequestHandler
          Abstract base class for request handlers.
 class DelegatingRequestHandler
          A simple handler that delegates to another handler.
 class ManagedRequestHandler
          A handler that allows user to handle ConnectionHandlers.
 class ThreadPerRequestHandler
          A Handler that uses a thread from a pool for each different request.
 

Methods in org.codehaus.spice.netserve.connection.handlers that return RequestHandler
protected abstract  RequestHandler ManagedRequestHandler.aquireHandler(Socket socket)
          Retrieve the underlying handler.
 

Methods in org.codehaus.spice.netserve.connection.handlers with parameters of type RequestHandler
protected abstract  void ManagedRequestHandler.releaseHandler(RequestHandler handler)
          Release the underlying handler.
 

Constructors in org.codehaus.spice.netserve.connection.handlers with parameters of type RequestHandler
ThreadPerRequestHandler(RequestHandler handler, org.codehaus.spice.threadpool.ThreadPool threadPool)
          Create handler.
DelegatingRequestHandler(RequestHandler handler)
          Create handler.
 

Uses of RequestHandler in org.codehaus.spice.netserve.connection.impl
 

Methods in org.codehaus.spice.netserve.connection.impl with parameters of type RequestHandler
 void DefaultAcceptorManager.connect(String name, ServerSocket socket, RequestHandler handler)
          Start accepting connections from a socket and passing connections to specified handler.
 



Copyright © 1999-2004 Codehaus. All Rights Reserved.