All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>>, org.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @Generated("mdsal-binding-generator") public interface StartTest extends org.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>
Start a new RPC Benchmark test

This class represents the following YANG schema fragment defined in module ntfbenchmark

 rpc start-test {
   input input {
     leaf producer-type {
       type enumeration {
         enum BLOCKING {
           value 1;
         }
         enum DROPPING {
           value 2;
         }
       }
     }
     leaf producers {
       type uint32;
       default 1;
     }
     leaf listeners {
       type uint32;
       default 1;
     }
     leaf payload-size {
       type uint32;
       default 1;
     }
     leaf iterations {
       type uint32;
       default 1;
     }
   }
   output output {
     leaf listener-ok {
       type uint32;
       default 0;
     }
     leaf producer-ok {
       type uint32;
       default 0;
     }
     leaf producer-error {
       type uint32;
       default 0;
     }
     leaf producer-elapsed-time {
       type uint32;
       default 0;
     }
     leaf listener-elapsed-time {
       type uint32;
       default 0;
     }
     leaf producer-rate {
       type uint32;
       default 0;
     }
     leaf listener-rate {
       type uint32;
       default 0;
     }
   }
 }
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final @NonNull org.opendaylight.yangtools.yang.common.QName
    YANG identifier of the statement represented by this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    default Class<StartTest>
     
    com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<StartTestOutput>>
     
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • invoke

      com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<StartTestOutput>> invoke(StartTestInput input)
      Specified by:
      invoke in interface org.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>
    • implementedInterface

      default Class<StartTest> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>>