Class ReactiveEchoProcessor
java.lang.Object
org.apache.hc.core5.testing.reactive.ReactiveEchoProcessor
- All Implemented Interfaces:
ReactiveRequestProcessor
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidprocessRequest(HttpRequest request, EntityDetails entityDetails, ResponseChannel responseChannel, HttpContext context, org.reactivestreams.Publisher<ByteBuffer> requestBody, Callback<org.reactivestreams.Publisher<ByteBuffer>> responseBodyFuture) Processes the actual HTTP request.
-
Constructor Details
-
ReactiveEchoProcessor
public ReactiveEchoProcessor()
-
-
Method Details
-
processRequest
public void processRequest(HttpRequest request, EntityDetails entityDetails, ResponseChannel responseChannel, HttpContext context, org.reactivestreams.Publisher<ByteBuffer> requestBody, Callback<org.reactivestreams.Publisher<ByteBuffer>> responseBodyFuture) throws HttpException, IOException Description copied from interface:ReactiveRequestProcessorProcesses the actual HTTP request. The handler can choose to send response messages immediately inside the call or asynchronously at some later point.- Specified by:
processRequestin interfaceReactiveRequestProcessor- Parameters:
request- the actual request.entityDetails- the request entity details ornullif the request does not enclose an entity.responseChannel- the response channel.context- the actual execution context.requestBody- a reactive stream representing the request body.responseBodyFuture- a callback to invoke with the response body, if any.- Throws:
HttpExceptionIOException
-