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=074167ba68b0c9f7683808e8c6f7069d46a29495;hp=257879070d22ad160d702714a5dd23ebcb0108b1;hb=3ec97cd0a86ad1b79f6854dc6924eb7b06e359a3;hpb=b8996e71640a91241dfac8a3f16c917d7046a834 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..074167ba68 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 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); }