Interface RequestProcessor<RQ,​RS>

Type Parameters:
RQ - A type of the request this RequestProcessor processes.
RS - A type of the response.
All Known Subinterfaces:
HttpRequestProcessor, RequestDispatcher<RQ,​RS>
All Known Implementing Classes:
RequestDispatcherByProcessorName, RequestProcessorWithStats, SimpleHttpRequestDispatcherByUrl, SimpleSpringHttpRequestDispatcherByUrl, SpringRequestDispatcher

@ThreadSafe
public interface RequestProcessor<RQ,​RS>
Processes requests.
  • Method Summary

    Modifier and Type Method Description
    CompletionStage<RS> process​(RQ request)
    Processes the request.