Remove AsyncDataBroker and related classes
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / TransactionFactory.java
1 /*
2  * Copyright (c) 2014 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 package org.opendaylight.mdsal.binding.api;
9
10 /**
11  * A factory which allocates new transactions to operate on the data tree.
12  *
13  * <p>
14  * <b>Note:</b> This interface is not intended to be used directly, but rather via subinterfaces
15  * which introduces additional semantics to allocated transactions.
16  * <ul>
17  * <li> {@link DataBroker}
18  * <li> {@link TransactionChain}
19  * </ul>
20  *
21  * <p>
22  * All operations on the data tree are performed via one of the transactions:
23  * <ul>
24  * <li>Read-Only - allocated using {@link #newReadOnlyTransaction()}
25  * <li>Write-Only - allocated using {@link #newWriteOnlyTransaction()}
26  * </ul>
27  *
28  * <p>
29  * These transactions provides a stable isolated view of the data tree, which is guaranteed to be
30  * not affected by other concurrent transactions, until transaction is committed.
31  *
32  * <p>
33  * For a detailed explanation of how transaction are isolated and how transaction-local changes are
34  * committed to global data tree, see {@link ReadTransaction}, {@link WriteTransaction}
35  * and {@link WriteTransaction#commit()}.
36  *
37  * <p>
38  * It is strongly recommended to use the type of transaction, which provides only the minimal
39  * capabilities you need. This allows for optimizations at the data broker / data store level. For
40  * example, implementations may optimize the transaction for reading if they know ahead of time that
41  * you only need to read data - such as not keeping additional meta-data, which may be required for
42  * write transactions.
43  *
44  * <p>
45  * <b>Implementation Note:</b> This interface is not intended to be implemented by users of MD-SAL,
46  * but only to be consumed by them.
47  *
48  * @see DataBroker
49 */
50 public interface TransactionFactory {
51     /**
52      * Allocates a new read-only transaction which provides an immutable snapshot of the data tree. The view of data
53      * tree is an immutable snapshot of current data tree state when transaction was allocated.
54      *
55      * @return A new read-only transaction
56      */
57     ReadTransaction newReadOnlyTransaction();
58
59     /**
60      * Allocates new read-write transaction which provides a mutable view of the data tree.
61      *
62      * <p>
63      * Preconditions for mutation of data tree are captured from the snapshot of data tree state, when the transaction
64      * is allocated. If data was changed during transaction in an incompatible way then the commit of this transaction
65      * will fail. See {@link ReadWriteTransaction#commit()} for more details about conflicting and non-conflicting
66      * changes and failure scenarios.
67      *
68      * @return new read-write transaction
69      */
70     ReadWriteTransaction newReadWriteTransaction();
71
72     /**
73      * Allocates new write-only transaction based on latest state of data tree.
74      *
75      * <p>
76      * Preconditions for mutation of data tree are captured from the snapshot of data tree state, when the transaction
77      * is allocated. If data was changed during transaction in an incompatible way then the commit of this transaction
78      * will fail. See {@link WriteTransaction#commit()} for more details about conflicting and not-conflicting changes
79      * and failure scenarios.
80      *
81      * <p>
82      * Since this transaction does not provide a view of the data it SHOULD BE used only by callers who are exclusive
83      * writers (exporters of data) to the subtree they modify. This prevents optimistic lock failures as described in
84      * {@link WriteTransaction#commit()}.
85      *
86      * <p>
87      * Exclusivity of writers to particular subtree SHOULD BE enforced by external locking mechanism.
88      *
89      * @return new write-only transaction
90      */
91     WriteTransaction newWriteOnlyTransaction();
92 }