Interface SalEchoService

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

    public interface SalEchoService
    extends org.opendaylight.yangtools.yang.binding.RpcService
    Interface for implementing the following YANG RPCs defined in module sal-echo
     rpc send-echo {
       input input {
         uses inv:node-context-ref;
         leaf data {
           type binary;
         }
       }
       output output {
         leaf data {
           type binary;
         }
       }
     }
     
    • Method Detail

      • sendEcho

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<SendEchoOutput>> sendEcho​(SendEchoInput input)
        Sending echo message to openflow device.