Package | Description |
---|---|
com.espertech.esper.client |
This package and its sub-packages defines the central Esper Client APIs.
|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
com.espertech.esper.epl.named |
Named window classes are in this package
|
com.espertech.esper.epl.spec |
Contains EPL statement specification classes define the constructs that make up an EPL statement,
such as the list of items in the select clause, the insert-into stream name and property names etc.
|
Modifier and Type | Method and Description |
---|---|
StreamSelector |
ConfigurationEngineDefaults.StreamSelection.getDefaultStreamSelector()
Returns the default stream selector.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurationEngineDefaults.StreamSelection.setDefaultStreamSelector(StreamSelector defaultStreamSelector)
Sets the default stream selector.
|
Modifier and Type | Method and Description |
---|---|
StreamSelector |
SelectClause.getStreamSelector()
Returns the stream selector.
|
StreamSelector |
InsertIntoClause.getStreamSelector()
Returns the stream selector for the insert into.
|
static StreamSelector |
StreamSelector.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamSelector[] |
StreamSelector.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static SelectClause |
SelectClause.create(StreamSelector streamSelector)
Creates an empty select-clause.
|
static SelectClause |
SelectClause.create(StreamSelector streamSelector,
String... propertyNames)
Creates a select-clause consisting of a list of property names.
|
static InsertIntoClause |
InsertIntoClause.create(String streamName,
String[] columns,
StreamSelector streamSelector)
Creates the insert-into clause.
|
static SelectClause |
SelectClause.createWildcard(StreamSelector streamSelector)
Creates a wildcard select-clause, additional expressions can still be added.
|
void |
SelectClause.setStreamSelector(StreamSelector streamSelector)
Sets the stream selector.
|
void |
InsertIntoClause.setStreamSelector(StreamSelector streamSelector)
Sets the stream selector for the insert into.
|
SelectClause |
SelectClause.streamSelector(StreamSelector streamSelector)
Sets the stream selector.
|
Constructor and Description |
---|
InsertIntoClause(String streamName,
List<String> columnNames,
StreamSelector streamSelector)
Ctor.
|
SelectClause(StreamSelector streamSelector,
List<SelectClauseElement> selectList)
Ctor.
|
Modifier and Type | Method and Description |
---|---|
StreamSelector |
NamedWindowOnSelectViewFactory.getOptionalStreamSelector() |
Modifier and Type | Method and Description |
---|---|
static NamedWindowOnExprFactory |
NamedWindowOnExprFactoryFactory.make(EventType namedWindowEventType,
String namedWindowName,
String namedWindowAlias,
OnTriggerDesc onTriggerDesc,
EventType filterEventType,
String filterStreamName,
boolean addToFront,
InternalEventRouter internalEventRouter,
EventType outputEventType,
StatementContext statementContext,
StatementMetricHandle createNamedWindowMetricsHandle,
boolean isDistinct,
StreamSelector optionalStreamSelector,
String optionalInsertIntoTableName) |
Constructor and Description |
---|
NamedWindowOnSelectViewFactory(EventType namedWindowEventType,
InternalEventRouter internalEventRouter,
boolean addToFront,
EPStatementHandle statementHandle,
EventBeanReader eventBeanReader,
boolean distinct,
StatementResultService statementResultService,
InternalEventRouteDest internalEventRouteDest,
boolean deleteAndSelect,
StreamSelector optionalStreamSelector,
String optionalInsertIntoTableName) |
Modifier and Type | Method and Description |
---|---|
static StreamSelector |
SelectClauseStreamSelectorEnum.mapFromSODA(SelectClauseStreamSelectorEnum selector)
Maps the internal stream selector to the SODA-representation
|
Modifier and Type | Method and Description |
---|---|
static SelectClauseStreamSelectorEnum |
SelectClauseStreamSelectorEnum.mapFromSODA(StreamSelector selector)
Maps the SODA-selector to the internal representation
|