X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FRpcImplementation.java;h=38b33d5d2a509f228a3fcc88a28c3b4f64a11dad;hp=6b1030a81500f5a909d6df30f69e52208025c482;hb=f776809962df87deeaa533ba995cc6fceba64d0e;hpb=2b3561704b01ff4cf14defbddd63dec63c162ad2 diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/RpcImplementation.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/RpcImplementation.java index 6b1030a815..38b33d5d2a 100644 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/RpcImplementation.java +++ b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/RpcImplementation.java @@ -15,6 +15,8 @@ import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.common.RpcResult; import org.opendaylight.yangtools.yang.data.api.CompositeNode; +import com.google.common.util.concurrent.ListenableFuture; + /** * {@link Provider}'s implementation of an RPC. * @@ -42,8 +44,6 @@ import org.opendaylight.yangtools.yang.data.api.CompositeNode; * {@link RpcResult} *
  • {@link Broker} returns the {@link RpcResult} to {@link Consumer} * - * - * */ public interface RpcImplementation extends Provider.ProviderFunctionality { @@ -59,13 +59,12 @@ public interface RpcImplementation extends Provider.ProviderFunctionality { Set getSupportedRpcs(); /** - * Invokes a implementation of specified rpc. - * + * Invokes a implementation of specified RPC asynchronously. * * @param rpc - * Rpc to be invoked + * RPC to be invoked * @param input - * Input data for rpc. + * Input data for the RPC. * * @throws IllegalArgumentException * - * @return RpcResult containing the output of rpc if was executed - * successfully, the list of errors otherwise. + * @return Future promising an RpcResult containing the output of + * the RPC if was executed successfully, the list of errors + * otherwise. */ - RpcResult invokeRpc(QName rpc, CompositeNode input); - + ListenableFuture> invokeRpc(QName rpc, CompositeNode input); }