b47e3d46c7bb209da4c1b02af75276951f7f20a2
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / CursorAwareWriteTransaction.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.mdsal.binding.api;
10
11 import com.google.common.util.concurrent.CheckedFuture;
12 import javax.annotation.Nonnull;
13 import javax.annotation.Nullable;
14 import org.opendaylight.mdsal.common.api.TransactionCommitFailedException;
15 import org.opendaylight.yangtools.yang.binding.DataObject;
16
17 /**
18  * Write transaction that provides cursor's with write access to the data tree.
19  */
20 public interface CursorAwareWriteTransaction extends DataTreeCursorProvider {
21
22     /**
23      * Create a {@link DataTreeWriteCursor} anchored at the specified path.
24      * There can only be one cursor open at a time.
25      *
26      * <p>
27      * @param path Path at which the cursor is to be anchored
28      * @return write cursor at the desired location.
29      * @throws IllegalStateException when there's an open cursor, or this transaction is closed already.
30      */
31     @Nullable
32     @Override
33     <T extends DataObject> DataTreeWriteCursor createCursor(@Nonnull DataTreeIdentifier<T> path);
34
35     /**
36      * Cancels the transaction.
37      *
38      * <p>
39      * Transactions can only be cancelled if it was not yet submited.
40      *
41      * <p>
42      * Invoking cancel() on failed or already canceled will have no effect, and transaction is
43      * considered cancelled.
44      *
45      * <p>
46      * Invoking cancel() on finished transaction (future returned by {@link #submit()} already
47      * successfully completed) will always fail (return false).
48      *
49      * @return <tt>false</tt> if the task could not be cancelled, typically because it has already
50      *         completed normally; <tt>true</tt> otherwise
51      *
52      */
53     boolean cancel();
54
55     /**
56      * Submits this transaction to be asynchronously applied to update the logical data tree. The
57      * returned CheckedFuture conveys the result of applying the data changes.
58      *
59      * <p>
60      * <b>Note:</b> It is strongly recommended to process the CheckedFuture result in an
61      * asynchronous manner rather than using the blocking get() method.
62      *
63      * <p>
64      * This call logically seals the transaction, which prevents the client from further changing
65      * data tree using this transaction's cursor. Any subsequent calls to
66      * <code>createCursorCursor(DOMDataTreeIdentifier</code>
67      * or any of the cursor's methods will fail with {@link IllegalStateException}.
68      *
69      * <p>
70      * The transaction is marked as submitted and enqueued into the shard back-end for
71      * processing.
72      */
73     CheckedFuture<Void,TransactionCommitFailedException> submit();
74 }