P - Type of path (subtree identifier), which represents location in
            treeD - Type of data (payload), which represents data payloadpublic interface AsyncConfigurationCommitCohort<P extends org.opendaylight.yangtools.concepts.Path<P>,D>
| Modifier and Type | Method and Description | 
|---|---|
| com.google.common.util.concurrent.ListenableFuture<Void> | abort()Initiates abort phase of associated request | 
| com.google.common.util.concurrent.ListenableFuture<Void> | commit()Initiates a commit phase of associated request | 
| com.google.common.util.concurrent.ListenableFuture<Void> | preCommit(AsyncReadTransaction<P,D> rebasedTransaction)Initiates a pre-commit of associated request | 
com.google.common.util.concurrent.ListenableFuture<Void> preCommit(AsyncReadTransaction<P,D> rebasedTransaction)
Implementation MUST NOT do any blocking calls during this callback, all pre-commit preparation SHOULD happen asynchronously and MUST result in completing returned future object.
rebasedTransaction - Read-only view of transaction as if happened on top of actual
            data storecom.google.common.util.concurrent.ListenableFuture<Void> commit()
Implementation MUST NOT do any blocking calls during this callback, all commit finalization SHOULD happen asynchronously and MUST result in completing returned future object.
com.google.common.util.concurrent.ListenableFuture<Void> abort()
Implementation MUST NOT do any blocking calls during this callback, all commit finalization SHOULD happen asynchronously and MUST result in completing returned future object.
Copyright © 2019 OpenDaylight. All rights reserved.