Package | Description |
---|---|
org.apache.http.impl.io |
Default implementations of message parses and writers
for synchronous, blocking communication.
|
org.apache.http.impl.nio |
Default implementations of HTTP connections for asynchronous,
even driven communication.
|
org.apache.http.impl.nio.codecs |
Default implementations of message parses and writers
for asynchronous, even driven communication.
|
Modifier and Type | Field and Description |
---|---|
private HttpTransportMetricsImpl |
SessionInputBufferImpl.metrics |
private HttpTransportMetricsImpl |
SessionOutputBufferImpl.metrics |
private HttpTransportMetricsImpl |
AbstractSessionInputBuffer.metrics
Deprecated.
|
private HttpTransportMetricsImpl |
AbstractSessionOutputBuffer.metrics
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected HttpTransportMetricsImpl |
AbstractSessionInputBuffer.createTransportMetrics()
Deprecated.
|
protected HttpTransportMetricsImpl |
AbstractSessionOutputBuffer.createTransportMetrics()
Deprecated.
|
Constructor and Description |
---|
SessionInputBufferImpl(HttpTransportMetricsImpl metrics,
int buffersize) |
SessionInputBufferImpl(HttpTransportMetricsImpl metrics,
int buffersize,
int minChunkLimit,
MessageConstraints constraints,
java.nio.charset.CharsetDecoder chardecoder)
Creates new instance of SessionInputBufferImpl.
|
SessionOutputBufferImpl(HttpTransportMetricsImpl metrics,
int buffersize) |
SessionOutputBufferImpl(HttpTransportMetricsImpl metrics,
int buffersize,
int fragementSizeHint,
java.nio.charset.CharsetEncoder charencoder)
Creates new instance of SessionOutputBufferImpl.
|
Modifier and Type | Field and Description |
---|---|
protected HttpTransportMetricsImpl |
NHttpConnectionBase.inTransportMetrics |
protected HttpTransportMetricsImpl |
NHttpConnectionBase.outTransportMetrics |
Modifier and Type | Method and Description |
---|---|
protected HttpTransportMetricsImpl |
NHttpConnectionBase.createTransportMetrics()
Deprecated.
(4.3) no longer used.
|
Modifier and Type | Method and Description |
---|---|
protected ContentDecoder |
NHttpConnectionBase.createContentDecoder(long len,
java.nio.channels.ReadableByteChannel channel,
SessionInputBuffer buffer,
HttpTransportMetricsImpl metrics)
Factory method for
ContentDecoder instances. |
protected ContentEncoder |
NHttpConnectionBase.createContentEncoder(long len,
java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics)
Factory method for
ContentEncoder instances. |
Modifier and Type | Field and Description |
---|---|
protected HttpTransportMetricsImpl |
AbstractContentEncoder.metrics |
protected HttpTransportMetricsImpl |
AbstractContentDecoder.metrics |
Constructor and Description |
---|
AbstractContentDecoder(java.nio.channels.ReadableByteChannel channel,
SessionInputBuffer buffer,
HttpTransportMetricsImpl metrics)
Creates an instance of this class.
|
AbstractContentEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics)
Creates an instance of this class.
|
ChunkDecoder(java.nio.channels.ReadableByteChannel channel,
SessionInputBuffer buffer,
HttpTransportMetricsImpl metrics) |
ChunkDecoder(java.nio.channels.ReadableByteChannel channel,
SessionInputBuffer buffer,
MessageConstraints constraints,
HttpTransportMetricsImpl metrics) |
ChunkEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics) |
ChunkEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics,
int fragementSizeHint) |
IdentityDecoder(java.nio.channels.ReadableByteChannel channel,
SessionInputBuffer buffer,
HttpTransportMetricsImpl metrics) |
IdentityEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics) |
IdentityEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics,
int fragementSizeHint) |
LengthDelimitedDecoder(java.nio.channels.ReadableByteChannel channel,
SessionInputBuffer buffer,
HttpTransportMetricsImpl metrics,
long contentLength) |
LengthDelimitedEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics,
long contentLength) |
LengthDelimitedEncoder(java.nio.channels.WritableByteChannel channel,
SessionOutputBuffer buffer,
HttpTransportMetricsImpl metrics,
long contentLength,
int fragementSizeHint) |