Merge "BUG 2676 : Use custom client-dispatcher when configured"
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / DOMDataTreeService.java
1 /*
2  * Copyright (c) 2015 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.controller.md.sal.dom.api;
9
10 import java.util.Collection;
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.concepts.ListenerRegistration;
13
14 /**
15  * A {@link DOMService} providing access to the conceptual data tree. Interactions
16  * with the data tree are split into data producers and consumers (listeners). Each
17  * of them operate on a set of subtrees, which need to be declared at instantiation time.
18  *
19  * Returned instances are not thread-safe and expected to be used by a single thread
20  * at a time. Furthermore, producers may not be accessed from consumer callbacks
21  * unless they were specified when the listener is registered.
22  *
23  * The service maintains a loop-free topology of producers and consumers. What this means
24  * is that a consumer is not allowed to access a producer, which affects any of the
25  * subtrees it is subscribed to. This restriction is in place to ensure the system does
26  * not go into a feedback loop, where it is impossible to block either a producer or
27  * a consumer without accumulating excess work in the backlog stemming from its previous
28  * activity.
29  */
30 public interface DOMDataTreeService extends DOMDataTreeProducerFactory, DOMService {
31     /**
32      * Register a {@link DOMDataTreeListener} instance. Once registered, the listener
33      * will start receiving changes on the selected subtrees. If the listener cannot
34      * keep up with the rate of changes, and allowRxMerges is set to true, this service
35      * is free to merge the changes, so that a smaller number of them will be reported,
36      * possibly hiding some data transitions (like flaps).
37      *
38      * If the listener wants to write into any producer, that producer has to be mentioned
39      * in the call to this method. Those producers will be bound exclusively to the
40      * registration, so that accessing them outside of this listener's callback will trigger
41      * an error. Any producers mentioned must be idle, e.g. they may not have an open
42      * transaction at the time this method is invoked.
43      *
44      * Each listener instance can be registered at most once. Implementations of this
45      * interface have to guarantee that the listener's methods will not be invoked
46      * concurrently from multiple threads.
47      *
48      * @param listener {@link DOMDataTreeListener} that is being registered
49      * @param subtrees Conceptual subtree identifier of subtrees which should be monitored
50      *                 for changes. May not be null or empty.
51      * @param allowRxMerges True if the backend may perform ingress state compression.
52      * @param producers {@link DOMDataTreeProducer} instances to bind to the listener.
53      * @return A listener registration. Once closed, the listener will no longer be
54      *         invoked and the producers will be unbound.
55      * @throws IllegalArgumentException if subtrees is empty or the listener is already bound
56      * @throws DOMDataTreeLoopException if the registration of the listener to the specified
57      *                                  subtrees with specified producers would form a
58      *                                  feedback loop
59      */
60     @Nonnull <T extends DOMDataTreeListener> ListenerRegistration<T> registerListener(@Nonnull T listener,
61         @Nonnull Collection<DOMDataTreeIdentifier> subtrees, boolean allowRxMerges, @Nonnull Collection<DOMDataTreeProducer> producers);
62 }