Click or drag to resize

PatternsFollowedBy Method (PatternExpr, PatternExpr, PatternExpr)

Pattern followed-by expression, allows adding sub-expressions that are connected by a followed-by.

Namespace:  com.espertech.esper.common.client.soda
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public static PatternFollowedByExpr FollowedBy(
	PatternExpr first,
	PatternExpr second,
	params PatternExpr[] more
)

Parameters

first
Type: com.espertech.esper.common.client.sodaPatternExpr
is the first pattern sub-expression to add to the followed-by
second
Type: com.espertech.esper.common.client.sodaPatternExpr
is a second pattern sub-expression to add to the followed-by
more
Type: com.espertech.esper.common.client.sodaPatternExpr
is optional additional pattern sub-expression to add to the followed-by

Return Value

Type: PatternFollowedByExpr
pattern expression representing the followed-by relationship
See Also