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

Packages that use NHttpServerConnection
org.apache.http.impl.nio   
org.apache.http.nio   
org.apache.http.nio.protocol   
 

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

Classes in org.apache.http.impl.nio that implement NHttpServerConnection
 class DefaultNHttpServerConnection
           
 

Uses of NHttpServerConnection in org.apache.http.nio
 

Methods in org.apache.http.nio with parameters of type NHttpServerConnection
 void NHttpServiceHandler.connected(NHttpServerConnection conn)
          Triggered when a new incoming connection is created.
 void NHttpServiceHandler.requestReceived(NHttpServerConnection conn)
          Triggered when a new HTTP request is received.
 void NHttpServiceHandler.inputReady(NHttpServerConnection conn, ContentDecoder decoder)
          Triggered when the underlying channel is ready for reading a new portion of the request entity through the corresponding content decoder.
 void NHttpServiceHandler.responseReady(NHttpServerConnection conn)
          Triggered when the connection is ready to send an HTTP response.
 void NHttpServiceHandler.outputReady(NHttpServerConnection conn, ContentEncoder encoder)
          Triggered when the underlying channel is ready for writing a next portion of the response entity through the corresponding content encoder.
 void NHttpServiceHandler.exception(NHttpServerConnection conn, java.io.IOException ex)
          Triggered when an I/O error occurrs while reading from or writing to the underlying channel.
 void NHttpServiceHandler.exception(NHttpServerConnection conn, org.apache.http.HttpException ex)
          Triggered when an HTTP protocol violation occurs while receiving an HTTP request.
 void NHttpServiceHandler.timeout(NHttpServerConnection conn)
          Triggered when no input is detected on this connection over the maximum period of inactivity.
 void NHttpServiceHandler.closed(NHttpServerConnection conn)
          Triggered when the connection is closed.
 

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

Methods in org.apache.http.nio.protocol with parameters of type NHttpServerConnection
 void BufferingHttpServiceHandler.connected(NHttpServerConnection conn)
           
 void BufferingHttpServiceHandler.requestReceived(NHttpServerConnection conn)
           
 void BufferingHttpServiceHandler.closed(NHttpServerConnection conn)
           
 void BufferingHttpServiceHandler.exception(NHttpServerConnection conn, org.apache.http.HttpException httpex)
           
 void BufferingHttpServiceHandler.exception(NHttpServerConnection conn, java.io.IOException ex)
           
 void BufferingHttpServiceHandler.inputReady(NHttpServerConnection conn, ContentDecoder decoder)
           
 void BufferingHttpServiceHandler.responseReady(NHttpServerConnection conn)
           
 void BufferingHttpServiceHandler.outputReady(NHttpServerConnection conn, ContentEncoder encoder)
           
 void BufferingHttpServiceHandler.timeout(NHttpServerConnection conn)
           
 void ThrottlingHttpServiceHandler.connected(NHttpServerConnection conn)
           
 void ThrottlingHttpServiceHandler.closed(NHttpServerConnection conn)
           
 void ThrottlingHttpServiceHandler.exception(NHttpServerConnection conn, org.apache.http.HttpException httpex)
           
 void ThrottlingHttpServiceHandler.exception(NHttpServerConnection conn, java.io.IOException ex)
           
 void ThrottlingHttpServiceHandler.timeout(NHttpServerConnection conn)
           
 void ThrottlingHttpServiceHandler.requestReceived(NHttpServerConnection conn)
           
 void ThrottlingHttpServiceHandler.inputReady(NHttpServerConnection conn, ContentDecoder decoder)
           
 void ThrottlingHttpServiceHandler.responseReady(NHttpServerConnection conn)
           
 void ThrottlingHttpServiceHandler.outputReady(NHttpServerConnection conn, ContentEncoder encoder)
           
 



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