[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: NEsper (in NEsper.dll)
Accept the visitor. The visitor will first visit the parent then visit all child nodes, then their child nodes.
The visitor can decide to skip child nodes by returning false in isVisit.
Namespace: net.esper.eql.expression
Assembly: NEsper (in NEsper.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Overridable Sub Accept ( _ visitor As ExprNodeVisitor _ ) |
C# |
---|
public virtual void Accept ( ExprNodeVisitor visitor ) |
Visual C++ |
---|
public: virtual void Accept ( ExprNodeVisitor^ visitor ) |
Parameters
- visitor
- net.esper.eql.expression.ExprNodeVisitor
to visit each node and each child node.