Click or drag to resize

PatternsOr Method (PatternExpr, PatternExpr, PatternExpr)

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

Namespace:  com.espertech.esper.common.client.soda
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public static PatternOrExpr Or(
	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 OR
second
Type: com.espertech.esper.common.client.sodaPatternExpr
is a second pattern sub-expression to add to the OR
more
Type: com.espertech.esper.common.client.sodaPatternExpr
is optional additional pattern sub-expression to add to the OR

Return Value

Type: PatternOrExpr
pattern expression representing the OR relationship
See Also