Class SalFlowsBatchServiceImpl
- java.lang.Object
-
- org.opendaylight.openflowplugin.impl.services.sal.SalFlowsBatchServiceImpl
-
- All Implemented Interfaces:
SalFlowsBatchService
,org.opendaylight.yangtools.yang.binding.RpcService
public class SalFlowsBatchServiceImpl extends Object implements SalFlowsBatchService
Default implementation ofSalFlowsBatchService
- delegates work toSalFlowService
.
-
-
Constructor Summary
Constructors Constructor Description SalFlowsBatchServiceImpl(SalFlowService salFlowService, FlowCapableTransactionService transactionService)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowsBatchOutput>>
addFlowsBatch(AddFlowsBatchInput input)
Invokeadd-flows-batch
RPC.com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowsBatchOutput>>
removeFlowsBatch(RemoveFlowsBatchInput input)
Invokeremove-flows-batch
RPC.com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowsBatchOutput>>
updateFlowsBatch(UpdateFlowsBatchInput input)
Invokeupdate-flows-batch
RPC.
-
-
-
Constructor Detail
-
SalFlowsBatchServiceImpl
public SalFlowsBatchServiceImpl(SalFlowService salFlowService, FlowCapableTransactionService transactionService)
-
-
Method Detail
-
removeFlowsBatch
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowsBatchOutput>> removeFlowsBatch(RemoveFlowsBatchInput input)
Description copied from interface:SalFlowsBatchService
Invokeremove-flows-batch
RPC.Batch removing flows from openflow device.
- Specified by:
removeFlowsBatch
in interfaceSalFlowsBatchService
- Parameters:
input
- ofremove-flows-batch
- Returns:
- output of
remove-flows-batch
-
addFlowsBatch
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowsBatchOutput>> addFlowsBatch(AddFlowsBatchInput input)
Description copied from interface:SalFlowsBatchService
Invokeadd-flows-batch
RPC.Batch adding flows to openflow device.
- Specified by:
addFlowsBatch
in interfaceSalFlowsBatchService
- Parameters:
input
- ofadd-flows-batch
- Returns:
- output of
add-flows-batch
-
updateFlowsBatch
public com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowsBatchOutput>> updateFlowsBatch(UpdateFlowsBatchInput input)
Description copied from interface:SalFlowsBatchService
Invokeupdate-flows-batch
RPC.Batch updating flows on openflow device.
- Specified by:
updateFlowsBatch
in interfaceSalFlowsBatchService
- Parameters:
input
- ofupdate-flows-batch
- Returns:
- output of
update-flows-batch
-
-