Modifier and Type | Method and Description |
---|---|
public void | processRequest(HttpRequest
the actual request. request, EntityDetails the request entity details or entityDetails, ResponseChannel null if the request
does not enclose an entity.the response channel. responseChannel, HttpContext the actual execution context. context, Publisher<ByteBuffer> a reactive stream representing the request body. requestBody, Callback<Publisher<ByteBuffer>> a callback to invoke with the response body, if any. responseBodyCallback)Processes the actual HTTP request. |
processRequest | back to summary |
---|---|
public void processRequest(HttpRequest request, EntityDetails entityDetails, ResponseChannel responseChannel, HttpContext context, Publisher<ByteBuffer> requestBody, Callback<Publisher<ByteBuffer>> responseBodyCallback) throws HttpException, IOException Processes the actual HTTP request. The handler can choose to send response messages immediately inside the call or asynchronously at some later point.
|