Remove use of YangInstanceIdentifier.EMPTY
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMDataTreeReadTransaction.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.dom.api;
9
10 import org.opendaylight.yangtools.concepts.Registration;
11
12 /**
13  * A transaction that provides read access to a logical data store.
14  *
15  * <p>
16  * View of the data tree is a stable point-in-time snapshot of the current data tree state when the
17  * transaction was created. It's state and underlying data tree is not affected by other
18  * concurrently running transactions.
19  *
20  * <p>
21  * <b>Implementation Note:</b> This interface is not intended to be implemented by users of MD-SAL,
22  * but only to be consumed by them.
23  *
24  * <h2>Transaction isolation example</h2>
25  * Lets assume initial state of data tree for <code>PATH</code> is <code>A</code>.
26  *
27  * <code>
28  * txRead = broker.newReadOnlyTransaction(); // read Transaction is snapshot of data
29  * txWrite = broker.newReadWriteTransactoin(); // concurrent write transaction
30  * txRead.read(OPERATIONAL, PATH).get(); // will return Optional containing A
31  * txWrite = broker.put(OPERATIONAL, PATH, B); // writes B to PATH
32  * txRead.read(OPERATIONAL, PATH).get(); // still returns Optional containing A
33  * txWrite.submit().get(); // data tree is updated, PATH contains B
34  * txRead.read(OPERATIONAL, PATH).get(); // still returns Optional containing A
35  * txAfterCommit = broker.newReadOnlyTransaction(); // read Transaction is snapshot of new state
36  * txAfterCommit.read(OPERATIONAL, PATH).get(); // returns Optional containing B;
37  * </code>
38  *
39  * <p>
40  * <b>Note:</b> example contains blocking calls on future only to illustrate that action happened after other
41  * asynchronous action. Use of blocking call {@link com.google.common.util.concurrent.FluentFuture#get()} is
42  * discouraged for most uses and you should use
43  * {@link com.google.common.util.concurrent.FluentFuture#addCallback(com.google.common.util.concurrent.FutureCallback,
44  * java.util.concurrent.Executor)} or other functions from {@link com.google.common.util.concurrent.Futures} to register
45  * more specific listeners.
46  */
47 public interface DOMDataTreeReadTransaction extends DOMDataTreeTransaction, DOMDataTreeReadOperations, Registration {
48     /**
49      * Closes this transaction and releases all resources associated with it.
50      */
51     @Override
52     void close();
53 }