Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static View |
View.create(String name)
Creates a view.
|
static View |
View.create(String name,
Expression... parameters)
Creates a view.
|
static View |
View.create(String name,
List<Expression> parameters)
Creates a view.
|
static View |
View.create(String namespace,
String name)
Creates a view.
|
static View |
View.create(String namespace,
String name,
Expression... parameters)
Creates a view.
|
static View |
View.create(String namespace,
String name,
List<Expression> parameters)
Creates a view.
|
Modifier and Type | Method and Description |
---|---|
List<View> |
ProjectedStream.getViews()
Returns the list of views added to the stream.
|
List<View> |
CreateWindowClause.getViews()
Returns the views onto the named window.
|
Modifier and Type | Method and Description |
---|---|
ProjectedStream |
ProjectedStream.addView(View view)
Add a view to the stream.
|
static CreateWindowClause |
CreateWindowClause.create(String windowName,
View... views)
Creates a clause to create a named window.
|
static CreateWindowClause |
CreateWindowClause.create(String windowName,
View view)
Creates a clause to create a named window.
|
Modifier and Type | Method and Description |
---|---|
void |
ProjectedStream.setViews(List<View> views)
Sets the list of views onto the stream.
|
void |
CreateWindowClause.setViews(List<View> views)
Sets the views onto the named window.
|
protected static void |
ProjectedStream.toEPLViews(StringWriter writer,
List<View> views)
Renders the views onto the projected stream.
|
Constructor and Description |
---|
CreateWindowClause(String windowName,
View[] viewArr)
Ctor.
|
Constructor and Description |
---|
CreateWindowClause(String windowName,
List<View> views)
Ctor.
|
FilterStream(Filter filter,
String name,
List<View> views)
Ctor.
|
ProjectedStream(List<View> views,
String optStreamName)
Ctor.
|