Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static InsertIntoClause |
InsertIntoClause.create(String streamName)
Creates the insert-into clause.
|
static InsertIntoClause |
InsertIntoClause.create(String streamName,
String... columns)
Creates the insert-into clause.
|
static InsertIntoClause |
InsertIntoClause.create(String streamName,
String[] columns,
StreamSelector streamSelector)
Creates the insert-into clause.
|
InsertIntoClause |
OnInsertSplitStreamItem.getInsertInto()
Returns the insert-into clause.
|
InsertIntoClause |
EPStatementObjectModel.getInsertInto()
Return the insert-into-clause, or null to indicate that the clause is absent.
|
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.
|
EPStatementObjectModel |
EPStatementObjectModel.insertInto(InsertIntoClause insertInto)
Specify an insert-into-clause.
|
void |
OnInsertSplitStreamItem.setInsertInto(InsertIntoClause insertInto)
Sets the insert-into clause.
|
void |
EPStatementObjectModel.setInsertInto(InsertIntoClause insertInto)
Specify an insert-into-clause.
|
Constructor and Description |
---|
OnInsertSplitStreamItem(InsertIntoClause insertInto,
SelectClause selectClause,
Expression whereClause)
Ctor.
|
OnInsertSplitStreamItem(InsertIntoClause insertInto,
SelectClause selectClause,
List<ContainedEventSelect> propertySelects,
String propertySelectsStreamName,
Expression whereClause)
Ctor.
|