Uses of Class
com.intergral.deep.agent.tracepoint.handler.bfs.Node
-
Packages that use Node Package Description com.intergral.deep.agent.tracepoint.handler com.intergral.deep.agent.tracepoint.handler.bfs -
-
Uses of Node in com.intergral.deep.agent.tracepoint.handler
Methods in com.intergral.deep.agent.tracepoint.handler that return types with arguments of type Node Modifier and Type Method Description protected Set<Node>
VariableProcessor. processChildNodes(VariableID variableId, Object value, int depth)
Methods in com.intergral.deep.agent.tracepoint.handler with parameters of type Node Modifier and Type Method Description protected boolean
FrameCollector. processNode(Node node)
This is where we take a node from BFS queue and process it back onto the queue. -
Uses of Node in com.intergral.deep.agent.tracepoint.handler.bfs
Methods in com.intergral.deep.agent.tracepoint.handler.bfs with parameters of type Node Modifier and Type Method Description static void
Node. breadthFirstSearch(Node root, Node.IConsumer consumer)
Start the breadth first search of the nodes.boolean
Node.IConsumer. processNode(Node node)
Method parameters in com.intergral.deep.agent.tracepoint.handler.bfs with type arguments of type Node Modifier and Type Method Description void
Node. addChildren(Set<Node> children)
Add child nodes.Constructor parameters in com.intergral.deep.agent.tracepoint.handler.bfs with type arguments of type Node Constructor Description Node(Node.NodeValue value, Set<Node> children, Node.IParent parent)
Create a new node for the BFS.
-