Uses of Class
org.apache.hc.core5.http.Message
Packages that use Message
Package
Description
Default implementation of HTTP/1.1 transport based on
the asynchronous (non-blocking) I/O model.
Support classes for the asynchronous I/O model.
-
Uses of Message in org.apache.hc.core5.http.impl.nio
Fields in org.apache.hc.core5.http.impl.nio declared as MessageModifier and TypeFieldDescriptionprivate Message<IncomingMessage, ContentDecoder> AbstractHttp1StreamDuplexer.incomingMessageprivate Message<OutgoingMessage, ContentEncoder> AbstractHttp1StreamDuplexer.outgoingMessage -
Uses of Message in org.apache.hc.core5.http.nio.support
Classes in org.apache.hc.core5.http.nio.support that implement interfaces with type arguments of type MessageModifier and TypeClassDescriptionclassBasic implementation ofAsyncRequestConsumerthat represents the request message as aMessageand relies on aAsyncEntityConsumerto process request entity stream.classBasic implementation ofAsyncResponseConsumerthat represents response message as aMessageand relies on aAsyncEntityConsumerto process response entity stream.Method parameters in org.apache.hc.core5.http.nio.support with type arguments of type MessageModifier and TypeMethodDescriptionvoidBasicRequestConsumer.consumeRequest(HttpRequest request, EntityDetails entityDetails, HttpContext httpContext, FutureCallback<Message<HttpRequest, T>> resultCallback) voidBasicResponseConsumer.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 MessageModifier and TypeFieldDescriptionprivate final BasicFuture<Message<HttpResponse, org.reactivestreams.Publisher<ByteBuffer>>> ReactiveResponseConsumer.responseFutureMethods in org.apache.hc.core5.reactive that return types with arguments of type MessageModifier and TypeMethodDescriptionFuture<Message<HttpResponse, org.reactivestreams.Publisher<ByteBuffer>>> ReactiveResponseConsumer.getResponseFuture()Constructor parameters in org.apache.hc.core5.reactive with type arguments of type MessageModifierConstructorDescriptionReactiveResponseConsumer(FutureCallback<Message<HttpResponse, org.reactivestreams.Publisher<ByteBuffer>>> responseCallback) Creates aReactiveResponseConsumerthat will call back the suppliedFutureCallbackwith a streamable response.