Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static OnInsertSplitStreamItem |
OnInsertSplitStreamItem.create(InsertIntoClause insertInto,
SelectClause selectClause,
Expression whereClause)
Factory method for split-stream items.
|
static OnInsertSplitStreamItem |
OnInsertSplitStreamItem.create(InsertIntoClause insertInto,
SelectClause selectClause,
List<ContainedEventSelect> propertySelects,
String propertySelectsStreamName,
Expression whereClause)
Factory method for split-stream items.
|
Modifier and Type | Method and Description |
---|---|
List<OnInsertSplitStreamItem> |
OnInsertSplitStreamClause.getItems()
Returns a list of insert-into, select and where-clauses.
|
Modifier and Type | Method and Description |
---|---|
void |
OnInsertSplitStreamClause.addItem(OnInsertSplitStreamItem item)
Add a insert-into, select and where-clause.
|
Modifier and Type | Method and Description |
---|---|
static OnInsertSplitStreamClause |
OnInsertSplitStreamClause.create(boolean isFirst,
List<OnInsertSplitStreamItem> items)
Creates a split-stream on-insert clause from an indicator whether to consider the first of all where-clauses,
and a list of items.
|
void |
OnInsertSplitStreamClause.setItems(List<OnInsertSplitStreamItem> items)
Sets a list of insert-into, select and where-clauses.
|
Constructor and Description |
---|
OnInsertSplitStreamClause(boolean isFirst,
List<OnInsertSplitStreamItem> items)
Ctor.
|