Interface SalAsyncConfigService

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.RpcService
    All Known Implementing Classes:
    SalAsyncConfigServiceImpl

    public interface SalAsyncConfigService
    extends org.opendaylight.yangtools.yang.binding.RpcService
    Interface for implementing the following YANG RPCs defined in module sal-async-config
     rpc set-async {
       input input {
         uses inv:node-context-ref;
         uses async-config;
       }
     }
     rpc get-async {
       input input {
         uses inv:node-context-ref;
       }
       output output {
         uses async-config;
       }
     }
     
    • Method Detail

      • setAsync

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<SetAsyncOutput>> setAsync​(SetAsyncInput input)
        Controller to switch message set configuration.
      • getAsync

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<GetAsyncOutput>> getAsync​(GetAsyncInput input)
        Controller to switch message get configuration.