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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.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 Detail
- 
remove
void 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 DataObjectdel- - DataObject for removingnodeIdent- Node InstanceIdentifier
 
- 
update
void 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 DataObjectoriginal- - original DataObject (for update)update- - changed DataObject (contain updates)nodeIdent- Node InstanceIdentifier
 
- 
add
com.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 DataObjectadd- - new DataObjectnodeIdent- Node InstanceIdentifier- Returns:
 - A future associated with RPC task. 
nullis set to the future if this method does not invoke RPC. 
 
 - 
 
 -