|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EventAdapterService | |
---|---|
net.esper.core | Implementation of client package interfaces, glue code |
net.esper.eql.core | Contains EQL statement specification classes define the constructs that make up an EQL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. |
net.esper.eql.db | Database SQL polling views and caches |
net.esper.eql.spec | Contains EQL statement specification classes define the constructs that make up an EQL statement, such as the list of items in the select clause, the insert-into stream name and property names etc. |
net.esper.event | This package defines the Esper Client event API. |
net.esper.pattern | Pattern expression tree and pattern state objects, the later resembles pattern expression state for each active pattern instance |
net.esper.view | View infrastructure concerned with view creation and destroy, cloning and hooking views trees into filtering. |
net.esper.view.std | Base service views that perform typical SQL-like functions such as unique, grouping, size, last etc. |
net.esper.view.stream | View to event stream relationship service |
Uses of EventAdapterService in net.esper.core |
---|
Methods in net.esper.core that return EventAdapterService | |
---|---|
EventAdapterService |
EPServicesContext.getEventAdapterService()
Returns event type resolution service. |
EventAdapterService |
EPServiceProviderSPI.getEventAdapterService()
Get the EventAdapterService for this engine. |
EventAdapterService |
EPServiceProviderImpl.getEventAdapterService()
|
Constructors in net.esper.core with parameters of type EventAdapterService | |
---|---|
ConfigurationOperationsImpl(EventAdapterService eventAdapterService)
Ctor. |
|
EPServicesContext(SchedulingService schedulingService,
EventAdapterService eventAdapterService,
AutoImportService autoImportService,
DatabaseConfigService databaseConfigService,
ViewResolutionService viewResolutionService,
StatementLockFactory statementLockFactory,
ManagedReadWriteLock eventProcessingRWLock,
ExtensionServicesContext extensionServicesContext,
EngineEnvContext engineEnvContext)
Constructor - sets up new set of services. |
Uses of EventAdapterService in net.esper.eql.core |
---|
Methods in net.esper.eql.core with parameters of type EventAdapterService | |
---|---|
static SelectExprProcessor |
SelectExprProcessorFactory.getProcessor(List<SelectExprElementCompiledSpec> selectionList,
boolean isUsingWildcard,
InsertIntoDesc insertIntoDesc,
StreamTypeService typeService,
EventAdapterService eventAdapterService)
Returns the processor to use for a given select-clause. |
static OrderByProcessor |
OrderByProcessorFactory.getProcessor(List<SelectExprElementCompiledSpec> selectionList,
List<ExprNode> groupByNodes,
List<Pair<ExprNode,Boolean>> orderByList,
AggregationService aggregationService,
EventAdapterService eventAdapterService)
Returns processor for order-by clauses. |
static ResultSetProcessor |
ResultSetProcessorFactory.getProcessor(SelectClauseSpec selectClauseSpec,
InsertIntoDesc insertIntoDesc,
List<ExprNode> groupByNodes,
ExprNode optionalHavingNode,
OutputLimitSpec outputLimitSpec,
List<Pair<ExprNode,Boolean>> orderByList,
StreamTypeService typeService,
EventAdapterService eventAdapterService,
AutoImportService autoImportService,
ViewResourceDelegate viewResourceDelegate)
Returns the result set process for the given select expression, group-by clause and having clause given a set of types describing each stream in the from-clause. |
Constructors in net.esper.eql.core with parameters of type EventAdapterService | |
---|---|
SelectExprEvalProcessor(List<SelectExprElementCompiledSpec> selectionList,
InsertIntoDesc insertIntoDesc,
boolean isUsingWildcard,
StreamTypeService typeService,
EventAdapterService eventAdapterService)
Ctor. |
|
SelectExprJoinWildcardProcessor(String[] streamNames,
EventType[] streamTypes,
EventAdapterService eventAdapterService,
InsertIntoDesc insertIntoDesc)
Ctor. |
Uses of EventAdapterService in net.esper.eql.db |
---|
Methods in net.esper.eql.db with parameters of type EventAdapterService | |
---|---|
static HistoricalEventViewable |
PollingViewableFactory.createDBStatementView(int streamNumber,
DBStatementStreamSpec databaseStreamSpec,
DatabaseConfigService databaseConfigService,
EventAdapterService eventAdapterService,
EPStatementHandle epStatementHandle)
Creates the viewable for polling via database SQL query. |
Constructors in net.esper.eql.db with parameters of type EventAdapterService | |
---|---|
PollExecStrategyDBQuery(EventAdapterService eventAdapterService,
EventType eventType,
ConnectionCache connectionCache,
String preparedStatementText,
Map<String,DBOutputTypeDesc> outputTypes)
Ctor. |
Uses of EventAdapterService in net.esper.eql.spec |
---|
Methods in net.esper.eql.spec with parameters of type EventAdapterService | |
---|---|
StreamSpecCompiled |
StreamSpecRaw.compile(EventAdapterService eventAdapterService,
AutoImportService autoImportService)
Compiles a raw stream specification consisting event type information and filter expressions to an validated, optimized form for use with filter service |
StreamSpecCompiled |
PatternStreamSpecRaw.compile(EventAdapterService eventAdapterService,
AutoImportService autoImportService)
|
StreamSpecCompiled |
FilterStreamSpecRaw.compile(EventAdapterService eventAdapterService,
AutoImportService autoImportService)
|
StreamSpecCompiled |
DBStatementStreamSpec.compile(EventAdapterService eventAdapterService,
AutoImportService autoImportService)
|
protected static EventType |
FilterStreamSpecRaw.resolveType(String eventName,
EventAdapterService eventAdapterService)
Resolves a given event alias to an event type. |
Uses of EventAdapterService in net.esper.event |
---|
Classes in net.esper.event that implement EventAdapterService | |
---|---|
class |
EventAdapterServiceBase
Implementation for resolving event name to event type. |
class |
EventAdapterServiceImpl
Provides event adapter services through it's base class. |
Constructors in net.esper.event with parameters of type EventAdapterService | |
---|---|
WrapperEventType(String typeName,
EventType eventType,
Map<String,Class> properties,
EventAdapterService eventAdapterService)
Ctor. |
Uses of EventAdapterService in net.esper.pattern |
---|
Methods in net.esper.pattern that return EventAdapterService | |
---|---|
EventAdapterService |
PatternContext.getEventAdapterService()
Returns teh service providing event adaptering or wrapping. |
Constructors in net.esper.pattern with parameters of type EventAdapterService | |
---|---|
PatternContext(FilterService filterService,
SchedulingService schedulingService,
ScheduleBucket scheduleBucket,
EventAdapterService eventAdapterService,
EPStatementHandle epStatementHandle)
Constructor. |
Uses of EventAdapterService in net.esper.view |
---|
Methods in net.esper.view that return EventAdapterService | |
---|---|
EventAdapterService |
ViewFactoryContext.getEventAdapterService()
Returns service for generating events and handling event types. |
EventAdapterService |
StatementServiceContext.getEventAdapterService()
Returns service for generating events and handling event types. |
Constructors in net.esper.view with parameters of type EventAdapterService | |
---|---|
StatementServiceContext(String statementId,
String statementName,
SchedulingService schedulingService,
ScheduleBucket scheduleBucket,
EventAdapterService eventAdapterService,
EPStatementHandle epStatementHandle,
ViewResolutionService viewResultionService,
ExtensionServicesContext extensionServicesContext,
StatementStopService statementStopService)
Constructor. |
Uses of EventAdapterService in net.esper.view.std |
---|
Methods in net.esper.view.std with parameters of type EventAdapterService | |
---|---|
protected static EventBean |
AddPropertyValueView.addProperty(EventBean originalEvent,
String[] propertyNames,
Object[] propertyValues,
EventType targetEventType,
EventAdapterService eventAdapterService)
Add a property to the event passed in. |
Uses of EventAdapterService in net.esper.view.stream |
---|
Methods in net.esper.view.stream with parameters of type EventAdapterService | |
---|---|
static StreamFactoryService |
StreamFactoryServiceProvider.newService(EventAdapterService eventAdapterService)
Creates an implementation of the StreamFactoryService interface. |
Constructors in net.esper.view.stream with parameters of type EventAdapterService | |
---|---|
StreamFactorySvcImpl(EventAdapterService eventAdapterService)
Ctor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |