Uses of Interface
org.apache.http.nio.NHttpServiceHandler

Packages that use NHttpServiceHandler
org.apache.http.impl.nio Default implementations for interfaces in org.apache.http.nio
org.apache.http.nio The core HTTP components based on non-blocking I/O model (HttpCore NIO). 
org.apache.http.nio.protocol Non-blocking HTTP protocol execution framework. 
 

Uses of NHttpServiceHandler in org.apache.http.impl.nio
 

Fields in org.apache.http.impl.nio declared as NHttpServiceHandler
protected  NHttpServiceHandler DefaultServerIOEventDispatch.handler
           
protected  NHttpServiceHandler SSLServerIOEventDispatch.handler
           
 

Methods in org.apache.http.impl.nio with parameters of type NHttpServiceHandler
 void DefaultNHttpServerConnection.consumeInput(NHttpServiceHandler handler)
           
 void DefaultNHttpServerConnection.produceOutput(NHttpServiceHandler handler)
           
 

Constructors in org.apache.http.impl.nio with parameters of type NHttpServiceHandler
DefaultServerIOEventDispatch(NHttpServiceHandler handler, HttpParams params)
          Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler.
SSLServerIOEventDispatch(NHttpServiceHandler handler, SSLContext sslcontext, HttpParams params)
          Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the given SSLContext.
SSLServerIOEventDispatch(NHttpServiceHandler handler, SSLContext sslcontext, SSLIOSessionHandler sslHandler, HttpParams params)
          Creates a new instance of this class to be used for dispatching I/O event notifications to the given protocol handler using the given SSLContext.
 

Uses of NHttpServiceHandler in org.apache.http.nio
 

Methods in org.apache.http.nio with parameters of type NHttpServiceHandler
 void NHttpServerIOTarget.consumeInput(NHttpServiceHandler handler)
          Triggered when the connection is ready to consume input.
 void NHttpServerIOTarget.produceOutput(NHttpServiceHandler handler)
          Triggered when the connection is ready to produce output.
 

Uses of NHttpServiceHandler in org.apache.http.nio.protocol
 

Classes in org.apache.http.nio.protocol that implement NHttpServiceHandler
 class AsyncNHttpServiceHandler
          Fully asynchronous HTTP server side protocol handler implementation that implements the essential requirements of the HTTP protocol for the server side message processing as described by RFC 2616.
 class BufferingHttpServiceHandler
          Service protocol handler implementations that provide compatibility with the blocking I/O by storing the full content of HTTP messages in memory.
 class NHttpServiceHandlerBase
          Deprecated. No longer used.
 class ThrottlingHttpServiceHandler
          Service protocol handler implementation that provide compatibility with the blocking I/O by utilizing shared content buffers and a fairly small pool of worker threads.
 



Copyright © 2005-2009 Apache Software Foundation. All Rights Reserved.