Interface FlowRpcAddTestInput

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<FlowRpcAddTestInput>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.RpcInput

    public interface FlowRpcAddTestInput
    extends org.opendaylight.yangtools.yang.binding.RpcInput, org.opendaylight.yangtools.yang.binding.Augmentable<FlowRpcAddTestInput>

    This class represents the following YANG schema fragment defined in module sal-bulk-flow

     input input {
       leaf dpn-id {
         type string;
       }
       leaf flow-count {
         type uint32;
       }
       leaf rpc-batch-size {
         type uint32;
       }
     }
     
    The schema path to identify an instance is sal-bulk-flow/flow-rpc-add-test/input

    To create instances of this class use FlowRpcAddTestInputBuilder.

    See Also:
    FlowRpcAddTestInputBuilder
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<FlowRpcAddTestInput> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.RpcInput
      • getDpnId

        String getDpnId()
        DPID to which flows are pushed
        Returns:
        java.lang.String dpnId, or null if not present
      • getFlowCount

        org.opendaylight.yangtools.yang.common.Uint32 getFlowCount()
        Flows to be pushed per DPN
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 flowCount, or null if not present
      • getRpcBatchSize

        org.opendaylight.yangtools.yang.common.Uint32 getRpcBatchSize()
        Batch-size which would be sent continuously without any pause, If less than sal-bulk-flow:flow-count, a fixed pause of 40 ms would be introduced
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 rpcBatchSize, or null if not present