| Package | Description |
|---|---|
| org.apache.http.nio.entity |
Core HTTP entity implementations with support for
asynchronous, event driven communication.
|
| org.apache.http.nio.protocol |
Core HTTP protocol execution framework and HTTP protocol handlers
for asynchronous, event driven communication.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
EntityAsyncContentProducer |
Basic implementation of
HttpAsyncContentProducer that relies on
inefficient and potentially blocking I/O operation redirection through
Channels.newChannel(java.io.InputStream). |
class |
NByteArrayEntity |
A simple self contained, repeatable non-blocking entity that retrieves
its content from a byte array.
|
class |
NFileEntity |
A self contained, repeatable non-blocking entity that retrieves its content
from a file.
|
class |
NStringEntity |
A simple, self contained, repeatable non-blocking entity that retrieves
its content from a
String object. |
| Constructor | Description |
|---|---|
BasicAsyncRequestProducer(org.apache.http.HttpHost target,
org.apache.http.HttpEntityEnclosingRequest request,
HttpAsyncContentProducer producer) |
Creates a producer that can be used to transmit the given request
message.
|
BasicAsyncResponseProducer(org.apache.http.HttpResponse response,
HttpAsyncContentProducer producer) |
Creates a producer that can be used to transmit the given response
message.
|