Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static PatternGuardExpr |
Patterns.guard(String namespace,
String name,
Expression[] parameters,
PatternExpr guarded)
Guard pattern expression guards a sub-expression, equivalent to the "every MyEvent where timer:within(1 sec)" syntax
|
static PatternGuardExpr |
Patterns.timerWithin(double seconds,
PatternExpr guarded)
Timer-within guard expression.
|
static PatternGuardExpr |
Patterns.timerWithinMax(double seconds,
int max,
PatternExpr guarded)
Timer-within-max guard expression.
|
static PatternGuardExpr |
Patterns.whileGuard(PatternExpr guarded,
Expression expression)
While-guard expression.
|