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.parse Parsers and AST tree walkers and helper classes transforming AST into business objects 
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 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
EPPatternStatementImpl(String expressionText, EventType eventType, DispatchService dispatchService, EventAdapterService eventAdapterService, EPPatternStmtStartMethod startMethod, ManagedReadWriteLock eventProcessingRWLock)
          Constructor.
EPServicesContext(SchedulingService schedulingService, EventAdapterService eventAdapterService, AutoImportService autoImportService, DatabaseConfigService databaseConfigService)
          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<SelectExprElementNamedSpec> selectionList, boolean isUsingWildcard, InsertIntoDesc insertIntoDesc, StreamTypeService typeService, EventAdapterService eventAdapterService)
          Returns the processor to use for a given select-clause.
static OrderByProcessor OrderByProcessorFactory.getProcessor(List<SelectExprElementNamedSpec> 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<SelectExprElementNamedSpec> 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.parse
 

Methods in net.esper.eql.parse with parameters of type EventAdapterService
static FilterSpec ASTFilterSpecHelper.buildSpec(antlr.collections.AST filterAST, Map<String,EventType> optionalTaggedEventTypes, EventAdapterService eventAdapterService)
          Creates a filter specification for the AST representing the filter expression.
 

Constructors in net.esper.eql.parse with parameters of type EventAdapterService
EQLTreeWalker(EventAdapterService eventAdapterService)
          Ctor.
 

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
WrapperEventType(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 ViewServiceContext.getEventAdapterService()
          Returns service for generating events and handling event types.
 

Constructors in net.esper.view with parameters of type EventAdapterService
ViewServiceContext(SchedulingService schedulingService, ScheduleBucket scheduleBucket, EventAdapterService eventAdapterService, EPStatementHandle epStatementHandle)
          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.