Package | Description |
---|---|
com.espertech.esper.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(String name,
Expression... parameters)
Adds a parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(String namespace,
String name)
Adds an un-parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(String namespace,
String name,
Expression... parameters)
Adds a parameterized view to the stream.
|
ProjectedStream |
ProjectedStream.addView(String namespace,
String name,
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.
|