Interface BundleMessagesCommiter<D extends org.opendaylight.yangtools.yang.binding.DataObject>
- All Known Implementing Classes:
- BundleFlowForwarder,- BundleGroupForwarder
public interface BundleMessagesCommiter<D extends org.opendaylight.yangtools.yang.binding.DataObject>
- 
Method SummaryModifier and TypeMethodDescriptioncom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddBundleMessagesOutput>>add(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D add, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent, BundleId bundleId) Method adds the DataObject which is identified by InstanceIdentifier to device.voidremove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D del, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent, BundleId bundleId) Method removes DataObject which is identified by InstanceIdentifier from device.voidupdate(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D original, D update, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent, BundleId bundleId) Method updates the original DataObject to the update DataObject in device.ForwardingRulesManager.java.
- 
Method Details- 
removevoid remove(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D del, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent, BundleId bundleId) Method removes DataObject which is identified by InstanceIdentifier from device.- Parameters:
- identifier- - the whole path to DataObject
- del- - DataObject for removing
- nodeIdent- Node InstanceIdentifier
 
- 
updatevoid update(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D original, D update, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent, BundleId bundleId) Method updates the original DataObject to the update DataObject in device.ForwardingRulesManager.java. Both are identified by same InstanceIdentifier.- Parameters:
- identifier- - the whole path to DataObject
- original- - original DataObject (for update)
- update- - changed DataObject (contain updates)
- nodeIdent- Node InstanceIdentifier
 
- 
addcom.google.common.util.concurrent.ListenableFuture<org.opendaylight.yangtools.yang.common.RpcResult<AddBundleMessagesOutput>> add(org.opendaylight.yangtools.yang.binding.InstanceIdentifier<D> identifier, D add, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<FlowCapableNode> nodeIdent, BundleId bundleId) Method adds the DataObject which is identified by InstanceIdentifier to device.- Parameters:
- identifier- - the whole path to new DataObject
- add- - new DataObject
- nodeIdent- Node InstanceIdentifier
- Returns:
- A future associated with RPC task. nullis set to the future if this method does not invoke RPC.
 
 
-