X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fapi%2FDOMDataTreeChangeListener.java;h=28aaeb45b3dc2e4bd4bc12cd814978962303f63c;hp=257879070d22ad160d702714a5dd23ebcb0108b1;hb=2a6aa1775604906755883f810ee9ea6d5f286135;hpb=10d39810f724474b84d0e6d3f5676a5154593ca2 diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeChangeListener.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeChangeListener.java index 257879070d..28aaeb45b3 100644 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeChangeListener.java +++ b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeChangeListener.java @@ -9,15 +9,21 @@ package org.opendaylight.controller.md.sal.dom.api; import java.util.Collection; import java.util.EventListener; -import javax.annotation.Nonnull; +import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate; /** * Interface implemented by classes interested in receiving notifications about - * data tree changes. This interface differs from {@link DOMDataChangeListener} - * in that it provides a cursor-based view of the change, which has potentially + * data tree changes. This interface provides a cursor-based view of the change, which has potentially * lower overhead. + * + *

+ * Note: this interface enables notifications only at the leader of the data store, if clustered. If you want + * notifications on all instances in a cluster, use the {@link ClusteredDOMDataTreeChangeListener}. + * + * @deprecated Use {@link org.opendaylight.mdsal.dom.api.DOMDataTreeChangeListener} instead. */ +@Deprecated(forRemoval = true) public interface DOMDataTreeChangeListener extends EventListener { /** * Invoked when there was data change for the supplied path, which was used @@ -34,6 +40,7 @@ public interface DOMDataTreeChangeListener extends EventListener { * to recover from such events. Event producers are expected to exert reasonable * effort to suppress such events. * + *

* In other words, it is completely acceptable to observe * a {@link org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidateNode}, * which reports a {@link org.opendaylight.yangtools.yang.data.api.schema.tree.ModificationType} @@ -42,5 +49,5 @@ public interface DOMDataTreeChangeListener extends EventListener { * * @param changes Collection of change events, may not be null or empty. */ - void onDataTreeChanged(@Nonnull Collection changes); + void onDataTreeChanged(@NonNull Collection changes); }