Package | Description |
---|---|
com.espertech.esper.common.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Class and Description |
---|---|
class |
FilterStream
A stream upon which projections (views) can be added that selects events by name and filter expression.
|
class |
PatternStream
A stream of events that is generated by pattern matches.
|
Modifier and Type | Method and Description |
---|---|
ProjectedStream |
ProjectedStream.addView(java.lang.String name,
Expression... parameters)
Adds a parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(java.lang.String namespace,
java.lang.String name)
Adds an un-parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(java.lang.String namespace,
java.lang.String name,
Expression... parameters)
Adds a parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(java.lang.String namespace,
java.lang.String name,
java.util.List<Expression> parameters)
Adds a parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(View view)
Add a view to the stream.
|
ProjectedStream |
ProjectedStream.unidirectional(boolean isUnidirectional)
Set to unidirectional.
|