Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
CreateWindowClause |
CreateWindowClause.addView(String name)
Adds an un-parameterized view to the named window.
|
CreateWindowClause |
CreateWindowClause.addView(String name,
Expression... parameters)
Adds a parameterized view to the named window.
|
CreateWindowClause |
CreateWindowClause.addView(String name,
List<Expression> parameters)
Adds a parameterized view to the named window.
|
CreateWindowClause |
CreateWindowClause.addView(String namespace,
String name)
Adds an un-parameterized view to the named window.
|
CreateWindowClause |
CreateWindowClause.addView(String namespace,
String name,
Expression... parameters)
Adds a parameterized view to the named window.
|
CreateWindowClause |
CreateWindowClause.addView(String namespace,
String name,
List<Expression> parameters)
Adds a parameterized view to the named window.
|
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.
|
CreateWindowClause |
EPStatementObjectModel.getCreateWindow()
Returns the create-window clause for creating named windows, or null if this statement does not
create a named window.
|
CreateWindowClause |
CreateWindowClause.insert(boolean insert)
Sets flag indicating that an insert from another named window should take place at the time of window creation.
|
CreateWindowClause |
CreateWindowClause.insertWhereClause(Expression insertWhereClause)
Sets the filter expression for inserting from another named window
|
Modifier and Type | Method and Description |
---|---|
void |
EPStatementObjectModel.setCreateWindow(CreateWindowClause createWindow)
Sets the create-window clause for creating named windows, or null if this statement does not
create a named window.
|