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.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.
 

Constructors in net.esper.core with parameters of type EventAdapterService
EPPatternStatementImpl(java.lang.String expressionText, EventType eventType, DispatchService dispatchService, EventAdapterService eventAdapterService, EPPatternStmtStartMethod startMethod)
          Constructor.
EPServicesContext(EventAdapterService eventAdapterService, AutoImportService autoImportService)
          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(java.util.List<SelectExprElementNamedSpec> selectionList, InsertIntoDesc insertIntoDesc, StreamTypeService typeService, EventAdapterService eventAdapterService)
          Returns the processor to use for a given select-clause.
static OrderByProcessor OrderByProcessorFactory.getProcessor(java.util.List<SelectExprElementNamedSpec> selectionList, java.util.List<ExprNode> groupByNodes, java.util.List<Pair<ExprNode,java.lang.Boolean>> orderByList, AggregationService aggregationService, EventAdapterService eventAdapterService)
          Returns processor for order-by clauses.
static ResultSetProcessor ResultSetProcessorFactory.getProcessor(java.util.List<SelectExprElementUnnamedSpec> selectionList, InsertIntoDesc insertIntoDesc, java.util.List<ExprNode> groupByNodes, ExprNode optionalHavingNode, OutputLimitSpec outputLimitSpec, java.util.List<Pair<ExprNode,java.lang.Boolean>> orderByList, StreamTypeService typeService, EventAdapterService eventAdapterService, AutoImportService autoImportService)
          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(java.util.List<SelectExprElementNamedSpec> selectionList, InsertIntoDesc insertIntoDesc, EventAdapterService eventAdapterService)
          Ctor.
SelectExprJoinWildcardProcessor(java.lang.String[] streamNames, EventType[] streamTypes, EventAdapterService eventAdapterService)
          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, java.util.Map<java.lang.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.
 

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)
          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)
          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, java.lang.String[] propertyNames, java.lang.Object[] propertyValues, EventType targetEventType, EventAdapterService eventAdapterService)
          Add a property to the event passed in.