Uses of Interface
org.apache.http.nio.entity.HttpAsyncContentProducer
-
Packages that use HttpAsyncContentProducer 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. -
-
Uses of HttpAsyncContentProducer in org.apache.http.nio.entity
Classes in org.apache.http.nio.entity that implement HttpAsyncContentProducer Modifier and Type Class Description classEntityAsyncContentProducerBasic implementation ofHttpAsyncContentProducerthat relies on inefficient and potentially blocking I/O operation redirection throughChannels.newChannel(java.io.InputStream).classNByteArrayEntityA simple self contained, repeatable non-blocking entity that retrieves its content from a byte array.classNFileEntityA self contained, repeatable non-blocking entity that retrieves its content from a file.classNStringEntityA simple, self contained, repeatable non-blocking entity that retrieves its content from aStringobject. -
Uses of HttpAsyncContentProducer in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as HttpAsyncContentProducer Modifier and Type Field Description private HttpAsyncContentProducerErrorResponseProducer. contentProducerprivate HttpAsyncContentProducerBasicAsyncRequestProducer. producerprivate HttpAsyncContentProducerBasicAsyncResponseProducer. producerConstructors in org.apache.http.nio.protocol with parameters of type HttpAsyncContentProducer Constructor Description BasicAsyncRequestProducer(HttpHost target, HttpEntityEnclosingRequest request, HttpAsyncContentProducer producer)Creates a producer that can be used to transmit the given request message.BasicAsyncResponseProducer(HttpResponse response, HttpAsyncContentProducer producer)Creates a producer that can be used to transmit the given response message.
-