public interface SalFlowsBatchService
extends org.opendaylight.yangtools.yang.binding.RpcService
rpc add-flows-batch {
input {
uses inv:node-context-ref;
list batch-add-flows {
key flow-id;
uses batch-flow-input-grouping;
}
uses bc:barrier-suffix;
}
output {
uses batch-flow-output-list-grouping;
}
}
rpc remove-flows-batch {
input {
uses inv:node-context-ref;
list batch-remove-flows {
key flow-id;
uses batch-flow-input-grouping;
}
uses bc:barrier-suffix;
}
output {
uses batch-flow-output-list-grouping;
}
}
rpc update-flows-batch {
input {
uses inv:node-context-ref;
list batch-update-flows {
key flow-id;
uses batch-flow-input-update-grouping;
}
uses bc:barrier-suffix;
}
output {
uses batch-flow-output-list-grouping;
}
}
| Modifier and Type | Method and Description |
|---|---|
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowsBatchOutput>> |
addFlowsBatch(AddFlowsBatchInput input)
Batch adding flows to openflow device.
|
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowsBatchOutput>> |
removeFlowsBatch(RemoveFlowsBatchInput input)
Batch removing flows from openflow device.
|
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowsBatchOutput>> |
updateFlowsBatch(UpdateFlowsBatchInput input)
Batch updating flows on openflow device.
|
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddFlowsBatchOutput>> addFlowsBatch(AddFlowsBatchInput input)
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<RemoveFlowsBatchOutput>> removeFlowsBatch(RemoveFlowsBatchInput input)
com.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<UpdateFlowsBatchOutput>> updateFlowsBatch(UpdateFlowsBatchInput input)
Copyright © 2019 OpenDaylight. All rights reserved.