public interface DOMDataTreeListener extends EventListener
Modifier and Type | Method and Description |
---|---|
void |
onDataTreeChanged(@NonNull Collection<org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate> changes,
@NonNull Map<DOMDataTreeIdentifier,org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?>> subtrees)
Invoked whenever one or more registered subtrees change.
|
void |
onDataTreeFailed(@NonNull Collection<DOMDataTreeListeningException> causes)
Invoked when a subtree listening failure occurs.
|
void onDataTreeChanged(@NonNull Collection<org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate> changes, @NonNull Map<DOMDataTreeIdentifier,org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?>> subtrees)
changes
- The set of changes being reported. Each subscribed subtree may be present
at most once.subtrees
- Per-subtree state as visible after the reported changes have been applied.
This includes all the subtrees this listener is subscribed to, even those
which have not changed.void onDataTreeFailed(@NonNull Collection<DOMDataTreeListeningException> causes)
causes
- Collection of failure causes, may not be null or empty.Copyright © 2019 OpenDaylight. All rights reserved.