OPENDJ-832 Leverage the work queue for processing requests received on the HTTP connection handler
AsynchronousFutureResult.java:
getRequestHandler() => getResultHandler()
| | |
| | | } |
| | | |
| | | /** |
| | | * Returns the request handler associated to this FutureResult. |
| | | * Returns the result handler associated to this FutureResult. |
| | | * |
| | | * @return the request handler associated to this FutureResult. |
| | | * @return the result handler associated to this FutureResult. |
| | | */ |
| | | public H getRequestHandler() { |
| | | public H getResultHandler() { |
| | | return handler; |
| | | } |
| | | |