Package org.apache.hc.core5.reactive
Interface ReactiveRequestProcessor
-
- All Known Implementing Classes:
ReactiveEchoProcessor,ReactiveRandomProcessor
public interface ReactiveRequestProcessor- Since:
- 5.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocessRequest(HttpRequest request, EntityDetails entityDetails, ResponseChannel responseChannel, HttpContext context, org.reactivestreams.Publisher<java.nio.ByteBuffer> requestBody, Callback<org.reactivestreams.Publisher<java.nio.ByteBuffer>> responseBodyCallback)Processes the actual HTTP request.
-
-
-
Method Detail
-
processRequest
void processRequest(HttpRequest request, EntityDetails entityDetails, ResponseChannel responseChannel, HttpContext context, org.reactivestreams.Publisher<java.nio.ByteBuffer> requestBody, Callback<org.reactivestreams.Publisher<java.nio.ByteBuffer>> responseBodyCallback) throws HttpException, java.io.IOException
Processes the actual HTTP request. The handler can choose to send response messages immediately inside the call or asynchronously at some later point.- 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.responseBodyCallback- a callback to invoke with the response body, if any.- Throws:
HttpExceptionjava.io.IOException
-
-