checkStyleViolationSeverity=error implemented for mdsal-singleton-common-api and...
[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      * @param path Path at which the cursor is to be anchored
27      * @return write cursor at the desired location.
28      * @throws IllegalStateException when there's an open cursor, or this transaction is closed already.
29      */
30     @Nullable
31     @Override
32     <T extends DataObject> DataTreeWriteCursor createCursor(@Nonnull DataTreeIdentifier<T> path);
33
34     /**
35      * Cancels the transaction.
36      *
37      * Transactions can only be cancelled if it was not yet submited.
38      *
39      * Invoking cancel() on failed or already canceled will have no effect, and transaction is
40      * considered cancelled.
41      *
42      * Invoking cancel() on finished transaction (future returned by {@link #submit()} already
43      * successfully completed) will always fail (return false).
44      *
45      * @return <tt>false</tt> if the task could not be cancelled, typically because it has already
46      *         completed normally; <tt>true</tt> otherwise
47      *
48      */
49     boolean cancel();
50
51     /**
52      * Submits this transaction to be asynchronously applied to update the logical data tree. The
53      * returned CheckedFuture conveys the result of applying the data changes.
54      * <p>
55      * <b>Note:</b> It is strongly recommended to process the CheckedFuture result in an
56      * asynchronous manner rather than using the blocking get() method.
57      *
58      * This call logically seals the transaction, which prevents the client from further changing
59      * data tree using this transaction's cursor. Any subsequent calls to
60      * <code>createCursorCursor(DOMDataTreeIdentifier</code>
61      * or any of the cursor's methods will fail with {@link IllegalStateException}.
62      *
63      * The transaction is marked as submitted and enqueued into the shard back-end for
64      * processing.
65      */
66     CheckedFuture<Void,TransactionCommitFailedException> submit();
67 }