Interface StartTest
- 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 run
This class represents the following YANG schema fragment defined in module rpcbenchmark
rpc start-test {
input input {
leaf operation {
type enumeration {
enum GLOBAL-RTC {
value 1;
}
enum ROUTED-RTC {
value 2;
}
}
}
leaf num-clients {
type uint32;
default 1;
}
leaf num-servers {
type uint32;
default 1;
}
leaf payload-size {
type uint32;
default 1;
}
leaf iterations {
type uint32;
default 1;
}
}
output output {
leaf global-rtc-client-ok {
type uint32;
default 0;
}
leaf global-rtc-client-error {
type uint32;
default 0;
}
leaf exec-time {
type uint32;
default 0;
}
leaf rate {
type uint32;
default 0;
}
}
}
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QNameYANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptioncom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<StartTestOutput>> invoke(StartTestInput input)
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG 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:
invokein interfaceorg.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>
-
implementedInterface
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.Rpc<StartTestInput,StartTestOutput>>
-