Interface SalGroupsBatchService

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

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

      • addGroupsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddGroupsBatchOutput>> addGroupsBatch​(AddGroupsBatchInput input)
        Invoke add-groups-batch RPC.
             
                 Batch adding groups to openflow device.
             
         
        Parameters:
        input - of add-groups-batch
        Returns:
        output of add-groups-batch
      • removeGroupsBatch

        @CheckReturnValue
        com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveGroupsBatchOutput>> removeGroupsBatch​(RemoveGroupsBatchInput input)
        Invoke remove-groups-batch RPC.
             
                 Batch removing groups from openflow device.
             
         
        Parameters:
        input - of remove-groups-batch
        Returns:
        output of remove-groups-batch
      • updateGroupsBatch

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