Uses of Interface
net.esper.event.EventAdapterService

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. 
 

Uses of EventAdapterService in net.esper.core
 

Methods in net.esper.core that return EventAdapterService
 EventAdapterService StatementContext.getEventAdapterService()
          Returns service for generating events and handling event types.
 EventAdapterService EPServicesContext.getEventAdapterService()
          Returns event type resolution service.
 EventAdapterService EPServiceProviderSPI.getEventAdapterService()
          Get the EventAdapterService for this engine.
 EventAdapterService EPServiceProviderImpl.getEventAdapterService()
           
 

Methods in net.esper.core with parameters of type EventAdapterService
protected static void EPServicesContextFactoryDefault.init(EventAdapterService eventAdapterService, ConfigurationInformation configSnapshot)
          Initialize event adapter service for config snapshot.
 

Constructors in net.esper.core with parameters of type EventAdapterService
ConfigurationOperationsImpl(EventAdapterService eventAdapterService, EngineImportService engineImportService)
          Ctor.
EPServicesContext(String engineURI, SchedulingService schedulingService, EventAdapterService eventAdapterService, EngineImportService engineImportService, EngineSettingsService engineSettingsService, DatabaseConfigService databaseConfigService, PluggableObjectCollection plugInViews, StatementLockFactory statementLockFactory, ManagedReadWriteLock eventProcessingRWLock, ExtensionServicesContext extensionServicesContext, EngineEnvContext engineEnvContext, StatementContextFactory statementContextFactory, PluggableObjectCollection plugInPatternObjects, OutputConditionFactory outputConditionFactory, TimerService timerService, boolean isShareViews)
          Constructor - sets up new set of services.
StatementContext(String engineURI, String engineInstanceId, String statementId, String statementName, String expression, SchedulingService schedulingService, ScheduleBucket scheduleBucket, EventAdapterService eventAdapterService, EPStatementHandle epStatementHandle, ViewResolutionService viewResultionService, PatternObjectResolutionService patternResolutionService, StatementExtensionSvcContext statementExtensionSvcContext, StatementStopService statementStopService, MethodResolutionService methodResolutionService, PatternContextFactory patternContextFactory, FilterService filterService, JoinSetComposerFactory joinSetComposerFactory, OutputConditionFactory outputConditionFactory)
          Constructor.
 

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<OrderByItem> 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<OrderByItem> orderByList, StreamTypeService typeService, EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, ViewResourceDelegate viewResourceDelegate, TimeProvider timeProvider)
          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, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider)
          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, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider)
           
 StreamSpecCompiled FilterStreamSpecRaw.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider)
           
 StreamSpecCompiled DBStatementStreamSpec.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider)
           
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 EventAdapterServiceImpl
          Implementation for resolving event name to event type.
 

Constructors in net.esper.event with parameters of type EventAdapterService
MapEventType(String typeName, Map<String,Class> propertyTypes, EventAdapterService eventAdapterService)
          Constructor takes a type name, map of property names and types.
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.
 

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.
 

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.