public class ForwardingWriteTransaction extends com.google.common.collect.ForwardingObject implements WriteTransaction
WriteTransaction
implementation which forwards all interface method
invocation to a delegate instance.CREATE_MISSING_PARENTS, FAIL_ON_MISSING_PARENTS
SUBMIT_EXCEPTION_MAPPER
Modifier | Constructor and Description |
---|---|
protected |
ForwardingWriteTransaction(WriteTransaction delegate) |
Modifier and Type | Method and Description |
---|---|
boolean |
cancel()
Cancels the transaction.
|
com.google.common.util.concurrent.FluentFuture<? extends org.opendaylight.mdsal.common.api.CommitInfo> |
commit()
Submits this transaction to be asynchronously applied to update the logical data tree.
|
protected WriteTransaction |
delegate() |
void |
delete(LogicalDatastoreType store,
org.opendaylight.yangtools.yang.binding.InstanceIdentifier<?> path)
Removes a piece of data from specified path.
|
Object |
getIdentifier() |
<T extends org.opendaylight.yangtools.yang.binding.DataObject> |
merge(LogicalDatastoreType store,
org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path,
T data)
Merges a piece of data with the existing data at a specified path.
|
<T extends org.opendaylight.yangtools.yang.binding.DataObject> |
merge(LogicalDatastoreType store,
org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path,
T data,
boolean createMissingParents)
Merges a piece of data with the existing data at a specified path.
|
<T extends org.opendaylight.yangtools.yang.binding.DataObject> |
put(LogicalDatastoreType store,
org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path,
T data)
Stores a piece of data at the specified path.
|
<T extends org.opendaylight.yangtools.yang.binding.DataObject> |
put(LogicalDatastoreType store,
org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path,
T data,
boolean createMissingParents)
Stores a piece of data at the specified path.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
submit
protected ForwardingWriteTransaction(WriteTransaction delegate)
protected WriteTransaction delegate()
delegate
in class com.google.common.collect.ForwardingObject
public <T extends org.opendaylight.yangtools.yang.binding.DataObject> void put(LogicalDatastoreType store, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path, T data)
WriteTransaction
This method does not automatically create missing parent nodes. It is equivalent to invoking
WriteTransaction.put(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)
with createMissingParents
set to false.
For more information on usage and examples, please see the documentation in AsyncWriteTransaction
.
If you need to make sure that a parent object exists but you do not want modify
its pre-existing state by using put, consider using WriteTransaction.merge(org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T>, T)
instead.
put
in interface WriteTransaction
store
- the logical data store which should be modifiedpath
- the data object pathdata
- the data object to be written to the specified pathpublic <T extends org.opendaylight.yangtools.yang.binding.DataObject> void put(LogicalDatastoreType store, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path, T data, boolean createMissingParents)
WriteTransaction
For more information on usage and examples, please see the documentation
in AsyncWriteTransaction
.
If you need to make sure that a parent object exists but you do not want
modify its pre-existing state by using put, consider using WriteTransaction.merge(org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T>, T)
instead.
Note: Using createMissingParents
with value true, may
introduce garbage in data store, or recreate nodes, which were deleted by
previous transaction.
put
in interface WriteTransaction
store
- the logical data store which should be modifiedpath
- the data object pathdata
- the data object to be written to the specified pathcreateMissingParents
- if WriteTransaction.CREATE_MISSING_PARENTS
(true
), any missing
parent nodes will be automatically created using a merge
operation.public <T extends org.opendaylight.yangtools.yang.binding.DataObject> void merge(LogicalDatastoreType store, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path, T data)
WriteTransaction
This method does not automatically create missing parent nodes. It is equivalent to invoking
WriteTransaction.merge(LogicalDatastoreType, InstanceIdentifier, DataObject, boolean)
with createMissingParents
set to false.
For more information on usage and examples, please see the documentation in AsyncWriteTransaction
.
If you require an explicit replace operation, use WriteTransaction.put(org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T>, T)
instead.
merge
in interface WriteTransaction
store
- the logical data store which should be modifiedpath
- the data object pathdata
- the data object to be merged to the specified pathpublic <T extends org.opendaylight.yangtools.yang.binding.DataObject> void merge(LogicalDatastoreType store, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T> path, T data, boolean createMissingParents)
WriteTransaction
For more information on usage and examples, please see the documentation
in AsyncWriteTransaction
.
If you require an explicit replace operation, use WriteTransaction.put(org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<T>, T)
instead.
merge
in interface WriteTransaction
store
- the logical data store which should be modifiedpath
- the data object pathdata
- the data object to be merged to the specified pathcreateMissingParents
- if WriteTransaction.CREATE_MISSING_PARENTS
(true
), any missing
parent nodes will be automatically created using a merge
operation.public void delete(LogicalDatastoreType store, org.opendaylight.yangtools.yang.binding.InstanceIdentifier<?> path)
AsyncWriteTransaction
delete
in interface WriteTransaction
delete
in interface AsyncWriteTransaction<org.opendaylight.yangtools.yang.binding.InstanceIdentifier<?>,org.opendaylight.yangtools.yang.binding.DataObject>
store
- Logical data store which should be modifiedpath
- Data object pathpublic boolean cancel()
AsyncWriteTransaction
Transactions can only be cancelled if it's state is new or submitted.
Invoking cancel() on a failed or cancelled transaction will have no effect, and transaction is considered cancelled.
Invoking cancel() on a finished transaction (future returned by AsyncWriteTransaction.submit()
already completed will always
fail (return false).
cancel
in interface AsyncWriteTransaction<org.opendaylight.yangtools.yang.binding.InstanceIdentifier<?>,org.opendaylight.yangtools.yang.binding.DataObject>
public com.google.common.util.concurrent.FluentFuture<? extends org.opendaylight.mdsal.common.api.CommitInfo> commit()
AsyncWriteTransaction
FluentFuture
conveys the result of applying the data changes.
This call logically seals the transaction, which prevents the client from further changing the data tree using
this transaction. Any subsequent calls to put(LogicalDatastoreType, Path, Object)
,
merge(LogicalDatastoreType, Path, Object)
, delete(LogicalDatastoreType, Path)
will fail
with IllegalStateException
. The transaction is marked as submitted and enqueued into the data store
back-end for processing.
Whether or not the commit is successful is determined by versioning of the data tree and validation of registered commit participants if the transaction changes the data tree.
The effects of a successful commit of data depends on listeners and commit participants that are registered with the data broker.
A successful commit produces implementation-specific CommitInfo
structure, which is used to communicate
post-condition information to the caller. Such information can contain commit-id, timing information or any
other information the implementation wishes to share.
commit
in interface AsyncWriteTransaction<org.opendaylight.yangtools.yang.binding.InstanceIdentifier<?>,org.opendaylight.yangtools.yang.binding.DataObject>
TransactionCommitFailedException
or an exception derived from TransactionCommitFailedException.public Object getIdentifier()
getIdentifier
in interface AsyncTransaction<org.opendaylight.yangtools.yang.binding.InstanceIdentifier<?>,org.opendaylight.yangtools.yang.binding.DataObject>
getIdentifier
in interface org.opendaylight.yangtools.concepts.Identifiable<Object>
Copyright © 2019 OpenDaylight. All rights reserved.