Uses of Interface
org.apache.http.io.HttpDataReceiver

Packages that use HttpDataReceiver
org.apache.http.impl Default implementations for interfaces in org.apache.http
org.apache.http.impl.entity Default implementations for interfaces in org.apache.http.entity
org.apache.http.impl.io Default implementations for interfaces in org.apache.http.io
org.apache.http.util Mostly utility classes with static helper methods for various purposes. 
 

Uses of HttpDataReceiver in org.apache.http.impl
 

Methods in org.apache.http.impl that return HttpDataReceiver
protected  HttpDataReceiver SocketHttpClientConnection.createHttpDataReceiver(java.net.Socket socket, int buffersize, HttpParams params)
           
protected  HttpDataReceiver SocketHttpServerConnection.createHttpDataReceiver(java.net.Socket socket, int buffersize, HttpParams params)
           
 

Methods in org.apache.http.impl with parameters of type HttpDataReceiver
protected  void AbstractHttpClientConnection.init(HttpDataReceiver datareceiver, HttpDataTransmitter datatransmitter, HttpParams params)
           
protected  void AbstractHttpServerConnection.init(HttpDataReceiver datareceiver, HttpDataTransmitter datatransmitter, HttpParams params)
           
 

Uses of HttpDataReceiver in org.apache.http.impl.entity
 

Methods in org.apache.http.impl.entity with parameters of type HttpDataReceiver
 HttpEntity EntityDeserializer.deserialize(HttpDataReceiver datareceiver, HttpMessage message)
           
protected  BasicHttpEntity EntityDeserializer.doDeserialize(HttpDataReceiver datareceiver, HttpMessage message)
           
 

Uses of HttpDataReceiver in org.apache.http.impl.io
 

Classes in org.apache.http.impl.io that implement HttpDataReceiver
 class AbstractHttpDataReceiver
          Abstract base class for data receivers using traditional IO.
 class SocketHttpDataReceiver
          A data receiver using a Java Socket and traditional IO.
 

Constructors in org.apache.http.impl.io with parameters of type HttpDataReceiver
ChunkedInputStream(HttpDataReceiver in)
           
ContentLengthInputStream(HttpDataReceiver in, long contentLength)
          Creates a new length limited stream
HttpDataInputStream(HttpDataReceiver datareceiver)
           
 

Uses of HttpDataReceiver in org.apache.http.util
 

Methods in org.apache.http.util with parameters of type HttpDataReceiver
static Header[] HeaderUtils.parseHeaders(HttpDataReceiver datareceiver)
           
static Header[] HeaderUtils.parseHeaders(HttpDataReceiver datareceiver, int maxHeaderCount, int maxLineLen)
          Parses HTTP headers from the data receiver stream according to the generic format as given in Section 3.1 of RFC 822, RFC-2616 Section 4 and 19.3.
 



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