mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
27.39.2013 c88dc2b1b42129998a8d02ca1e08f0cb955b7303
OPENDJ-832 Leverage the work queue for processing requests received on the HTTP connection handler

AsynchronousFutureResult.java:
getRequestHandler() => getResultHandler()
1 files modified
6 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/main/java/com/forgerock/opendj/util/AsynchronousFutureResult.java 6 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/main/java/com/forgerock/opendj/util/AsynchronousFutureResult.java
@@ -274,11 +274,11 @@
    }
    /**
     * 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;
    }