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

Jean-Noel Rouvignac
27.39.2013 31c8fba6b4261f3b0affccdadbe328db8528f090
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
opendj-sdk/opendj3/opendj-ldap-sdk/src/main/java/com/forgerock/opendj/util/AsynchronousFutureResult.java 6 ●●●● patch | view | raw | blame | history
opendj-sdk/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;
    }