public interface YdtExtendedListener extends YdtListener
This interface needs to be implemented by protocol implementing listener's based call backs while YDT walk, and update application specific information in data node.
| Modifier and Type | Method and Description |
|---|---|
void |
enterYdtNode(YdtExtendedContext ydtExtendedContext)
YANG data tree node's entry, it will be called during a node entry.
|
void |
exitYdtNode(YdtExtendedContext ydtExtendedContext)
YANG data tree node's exit, it will be called during a node exit.
|
enterYdtNode, exitYdtNodevoid enterYdtNode(YdtExtendedContext ydtExtendedContext)
All the related information about the node can be obtain from the YDT context. Also it can be used to maintain / query application specific information.
ydtExtendedContext - YANG data tree contextvoid exitYdtNode(YdtExtendedContext ydtExtendedContext)
All the related information about the node can be obtain from the YDT context. Also it can be used to maintain / query application specific information.
ydtExtendedContext - YANG data tree context