Uses of Class
org.apache.hc.core5.http.Message
-
Packages that use Message Package Description org.apache.hc.core5.http.impl.nio Default implementation of HTTP/1.1 transport based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.http.nio.support Support classes for the asynchronous I/O model.org.apache.hc.core5.reactive -
-
Uses of Message in org.apache.hc.core5.http.impl.nio
Fields in org.apache.hc.core5.http.impl.nio declared as Message Modifier and Type Field Description private Message<IncomingMessage,ContentDecoder>
AbstractHttp1StreamDuplexer. incomingMessage
private Message<OutgoingMessage,ContentEncoder>
AbstractHttp1StreamDuplexer. outgoingMessage
-
Uses of Message in org.apache.hc.core5.http.nio.support
Method parameters in org.apache.hc.core5.http.nio.support with type arguments of type Message Modifier and Type Method Description void
BasicRequestConsumer. consumeRequest(HttpRequest request, EntityDetails entityDetails, HttpContext httpContext, FutureCallback<Message<HttpRequest,T>> resultCallback)
void
BasicResponseConsumer. consumeResponse(HttpResponse response, EntityDetails entityDetails, HttpContext httpContext, FutureCallback<Message<HttpResponse,T>> resultCallback)
-
Uses of Message in org.apache.hc.core5.reactive
Fields in org.apache.hc.core5.reactive with type parameters of type Message Modifier and Type Field Description private BasicFuture<Message<HttpResponse,org.reactivestreams.Publisher<java.nio.ByteBuffer>>>
ReactiveResponseConsumer. responseFuture
Methods in org.apache.hc.core5.reactive that return types with arguments of type Message Modifier and Type Method Description java.util.concurrent.Future<Message<HttpResponse,org.reactivestreams.Publisher<java.nio.ByteBuffer>>>
ReactiveResponseConsumer. getResponseFuture()
Constructor parameters in org.apache.hc.core5.reactive with type arguments of type Message Constructor Description ReactiveResponseConsumer(FutureCallback<Message<HttpResponse,org.reactivestreams.Publisher<java.nio.ByteBuffer>>> responseCallback)
Creates aReactiveResponseConsumer
that will call back the suppliedFutureCallback
with a streamable response.
-