Interface SalFlowsBatchService

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

    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)
        Batch adding flows to openflow device.
      • removeFlowsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowsBatchOutput>> removeFlowsBatch​(RemoveFlowsBatchInput input)
        Batch removing flows from openflow device.
      • updateFlowsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowsBatchOutput>> updateFlowsBatch​(UpdateFlowsBatchInput input)
        Batch updating flows on openflow device.