Class BindingDOMRpcImplementationAdapter
- java.lang.Object
-
- org.opendaylight.controller.md.sal.binding.impl.BindingDOMRpcImplementationAdapter
-
- All Implemented Interfaces:
DOMRpcImplementation
@Deprecated(forRemoval=true) public class BindingDOMRpcImplementationAdapter extends Object implements DOMRpcImplementation
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CheckedFuture<DOMRpcResult,DOMRpcException>invokeRpc(DOMRpcIdentifier rpc, NormalizedNode<?,?> input)Deprecated, for removal: This API element is subject to removal in a future version.Initiate invocation of the RPC.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementation
invocationCost
-
-
-
-
Method Detail
-
invokeRpc
public CheckedFuture<DOMRpcResult,DOMRpcException> invokeRpc(DOMRpcIdentifier rpc, NormalizedNode<?,?> input)
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:DOMRpcImplementationInitiate invocation of the RPC. Implementations of this method are expected to not block on external resources.- Specified by:
invokeRpcin interfaceDOMRpcImplementation- Parameters:
rpc- RPC identifier which was invokedinput- Input arguments, null if the RPC does not take any.- Returns:
- A
CheckedFuturewhich will return either a result structure, or report a subclass ofDOMRpcExceptionreporting a transport error.
-
-