Interface SalFlowsBatchService

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

    @Generated("mdsal-binding-generator")
    public interface SalFlowsBatchService
    extends org.opendaylight.yangtools.yang.binding.RpcService
    Interface for implementing the following YANG RPCs defined in module sal-flows-batch
     rpc add-flows-batch {
       input input {
         uses inv:node-context-ref;
         list batch-add-flows {
           key flow-id;
           uses batch-flow-input-grouping;
         }
         uses bc:barrier-suffix;
       }
       output output {
         uses batch-flow-output-list-grouping;
       }
     }
     rpc remove-flows-batch {
       input input {
         uses inv:node-context-ref;
         list batch-remove-flows {
           key flow-id;
           uses batch-flow-input-grouping;
         }
         uses bc:barrier-suffix;
       }
       output output {
         uses batch-flow-output-list-grouping;
       }
     }
     rpc update-flows-batch {
       input input {
         uses inv:node-context-ref;
         list batch-update-flows {
           key flow-id;
           uses batch-flow-input-update-grouping;
         }
         uses bc:barrier-suffix;
       }
       output output {
         uses batch-flow-output-list-grouping;
       }
     }
     
    • Method Detail

      • addFlowsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowsBatchOutput>> addFlowsBatch​(AddFlowsBatchInput input)
        Invoke add-flows-batch RPC.
             
                 Batch adding flows to openflow device.
             
         
        Parameters:
        input - of add-flows-batch
        Returns:
        output of add-flows-batch
      • removeFlowsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowsBatchOutput>> removeFlowsBatch​(RemoveFlowsBatchInput input)
        Invoke remove-flows-batch RPC.
             
                 Batch removing flows from openflow device.
             
         
        Parameters:
        input - of remove-flows-batch
        Returns:
        output of remove-flows-batch
      • updateFlowsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowsBatchOutput>> updateFlowsBatch​(UpdateFlowsBatchInput input)
        Invoke update-flows-batch RPC.
             
                 Batch updating flows on openflow device.
             
         
        Parameters:
        input - of update-flows-batch
        Returns:
        output of update-flows-batch