Class TransactInvokerImpl
- java.lang.Object
-
- org.opendaylight.ovsdb.southbound.ovsdb.transact.TransactInvokerImpl
-
- All Implemented Interfaces:
TransactInvoker
public class TransactInvokerImpl extends Object implements TransactInvoker
-
-
Constructor Summary
Constructors Constructor Description TransactInvokerImpl(OvsdbConnectionInstance connectionInstance, DatabaseSchema dbSchema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
invoke(TransactCommand command, BridgeOperationalState state, Collection<org.opendaylight.mdsal.binding.api.DataTreeModification<org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node>> modifications, InstanceIdentifierCodec instanceIdentifierCodec)
Invoke the given transactional command, with the given bridge state, on the given modifications.void
invoke(TransactCommand command, BridgeOperationalState state, DataChangeEvent events, InstanceIdentifierCodec instanceIdentifierCodec)
Invoke the given transactional command, with the given bridge state, on the given events.
-
-
-
Constructor Detail
-
TransactInvokerImpl
public TransactInvokerImpl(OvsdbConnectionInstance connectionInstance, DatabaseSchema dbSchema)
-
-
Method Detail
-
invoke
public void invoke(TransactCommand command, BridgeOperationalState state, DataChangeEvent events, InstanceIdentifierCodec instanceIdentifierCodec)
Description copied from interface:TransactInvoker
Invoke the given transactional command, with the given bridge state, on the given events.- Specified by:
invoke
in interfaceTransactInvoker
- Parameters:
command
- The transactional command.state
- The bridge state.events
- The events to be processed.instanceIdentifierCodec
- The instance identifier codec to use.
-
invoke
public void invoke(TransactCommand command, BridgeOperationalState state, Collection<org.opendaylight.mdsal.binding.api.DataTreeModification<org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node>> modifications, InstanceIdentifierCodec instanceIdentifierCodec)
Description copied from interface:TransactInvoker
Invoke the given transactional command, with the given bridge state, on the given modifications.- Specified by:
invoke
in interfaceTransactInvoker
- Parameters:
command
- The transactional command.state
- The bridge state.modifications
- The modifications to be processed.instanceIdentifierCodec
- The instance identifier codec to use.
-
-