Uses of Interface
com.espertech.esper.event.EventAdapterService

Packages that use EventAdapterService
com.espertech.esper.core Implementation of client package interfaces, glue code 
com.espertech.esper.epl.core 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. 
com.espertech.esper.epl.db Database SQL polling views and caches 
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. 
com.espertech.esper.epl.variable Variable service and variable collections 
com.espertech.esper.event This package defines the Esper Client event API. 
com.espertech.esper.event.vaevent Value added events are revision events and variant events. 
com.espertech.esper.pattern Pattern expression tree and pattern state objects, the later resembles pattern expression state for each active pattern instance 
com.espertech.esper.plugin APIs for plug-in adapter (for input-output) and plug-in event representation (event types and event objects) are in this package. 
com.espertech.esper.view View infrastructure concerned with view creation and destroy, cloning and hooking views trees into filtering. 
com.espertech.esper.view.std Base service views that perform typical SQL-like functions such as unique, grouping, size, last etc. 
 

Uses of EventAdapterService in com.espertech.esper.core
 

Methods in com.espertech.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 com.espertech.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 com.espertech.esper.core with parameters of type EventAdapterService
ConfigurationOperationsImpl(EventAdapterService eventAdapterService, EngineImportService engineImportService, VariableService variableService, EngineSettingsService engineSettingsService, ValueAddEventService valueAddEventService)
          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, FilterService filterService, StreamFactoryService streamFactoryService, NamedWindowService namedWindowService, VariableService variableService, TimeSourceService timeSourceService, ValueAddEventService valueAddEventService)
          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, NamedWindowService namedWindowService, VariableService variableService, StatementResultService statementResultService, URI[] plugInTypeResolutionURIs, ValueAddEventService valueAddEventService)
          Constructor.
 

Uses of EventAdapterService in com.espertech.esper.epl.core
 

Methods in com.espertech.esper.epl.core with parameters of type EventAdapterService
static HistoricalEventViewable MethodPollingViewableFactory.createPollMethodView(int streamNumber, MethodStreamSpec methodStreamSpec, EventAdapterService eventAdapterService, EPStatementHandle epStatementHandle, MethodResolutionService methodResolutionService, EngineImportService engineImportService, SchedulingService schedulingService, ScheduleBucket scheduleBucket)
          Creates a method-invocation polling view for use as a stream that calls a method, or pulls results from cache.
static SelectExprProcessor SelectExprProcessorFactory.getProcessor(List<SelectClauseElementCompiled> selectionList, boolean isUsingWildcard, InsertIntoDesc insertIntoDesc, StreamTypeService typeService, EventAdapterService eventAdapterService, StatementResultService statementResultService, ValueAddEventService valueAddEventService)
          Returns the processor to use for a given select-clause.
static OrderByProcessor OrderByProcessorFactory.getProcessor(List<SelectClauseExprCompiledSpec> selectionList, List<ExprNode> groupByNodes, List<OrderByItem> orderByList, AggregationService aggregationService, EventAdapterService eventAdapterService)
          Returns processor for order-by clauses.
 

Constructors in com.espertech.esper.epl.core with parameters of type EventAdapterService
MethodPollingExecStrategy(EventAdapterService eventAdapterService, net.sf.cglib.reflect.FastMethod method, boolean useMapType, EventType eventType)
          Ctor.
SelectExprEvalProcessor(List<SelectClauseExprCompiledSpec> selectionList, InsertIntoDesc insertIntoDesc, boolean isUsingWildcard, StreamTypeService typeService, EventAdapterService eventAdapterService, ValueAddEventService revisionService)
          Ctor.
SelectExprEvalProcessorStreams(List<SelectClauseExprCompiledSpec> selectionList, List<SelectClauseStreamCompiledSpec> selectedStreams, InsertIntoDesc insertIntoDesc, boolean isUsingWildcard, StreamTypeService typeService, EventAdapterService eventAdapterService)
          Ctor.
SelectExprJoinWildcardProcessor(String[] streamNames, EventType[] streamTypes, EventAdapterService eventAdapterService, InsertIntoDesc insertIntoDesc)
          Ctor.
 

Uses of EventAdapterService in com.espertech.esper.epl.db
 

Methods in com.espertech.esper.epl.db with parameters of type EventAdapterService
static HistoricalEventViewable DatabasePollingViewableFactory.createDBStatementView(int streamNumber, DBStatementStreamSpec databaseStreamSpec, DatabaseConfigService databaseConfigService, EventAdapterService eventAdapterService, EPStatementHandle epStatementHandle)
          Creates the viewable for polling via database SQL query.
 

Constructors in com.espertech.esper.epl.db with parameters of type EventAdapterService
PollExecStrategyDBQuery(EventAdapterService eventAdapterService, EventType eventType, ConnectionCache connectionCache, String preparedStatementText, Map<String,DBOutputTypeDesc> outputTypes)
          Ctor.
 

Uses of EventAdapterService in com.espertech.esper.epl.spec
 

Methods in com.espertech.esper.epl.spec with parameters of type EventAdapterService
 StreamSpecCompiled StreamSpecRaw.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider, NamedWindowService namedWindowService, ValueAddEventService valueAddEventService, VariableService variableService, String engineURI, URI[] optionalPlugInTypeResolutionURIS)
          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, NamedWindowService namedWindowService, ValueAddEventService valueAddEventService, VariableService variableService, String engineURI, URI[] plugInTypeResolutionURIs)
           
 StreamSpecCompiled MethodStreamSpec.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider, NamedWindowService namedWindowService, ValueAddEventService valueAddEventService, VariableService variableService, String engineURI, URI[] plugInTypeResolutionURIs)
           
 StreamSpecCompiled FilterStreamSpecRaw.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider, NamedWindowService namedWindowService, ValueAddEventService valueAddEventService, VariableService variableService, String engineURI, URI[] optionalPlugInTypeResolutionURIS)
           
 StreamSpecCompiled DBStatementStreamSpec.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService, TimeProvider timeProvider, NamedWindowService namedWindowService, ValueAddEventService valueAddEventService, VariableService variableService, String engineURI, URI[] plugInTypeResolutionURIs)
           
protected static EventType FilterStreamSpecRaw.resolveType(String engineURI, String eventName, EventAdapterService eventAdapterService, URI[] optionalResolutionURIs)
          Resolves a given event alias to an event type.
 

Uses of EventAdapterService in com.espertech.esper.epl.variable
 

Constructors in com.espertech.esper.epl.variable with parameters of type EventAdapterService
CreateVariableView(EventAdapterService eventAdapterService, VariableService variableService, String variableName, StatementResultService statementResultService)
          Ctor.
OnSetVariableView(OnTriggerSetDesc desc, EventAdapterService eventAdapterService, VariableService variableService, StatementResultService statementResultService)
          Ctor.
 

Uses of EventAdapterService in com.espertech.esper.event
 

Classes in com.espertech.esper.event that implement EventAdapterService
 class EventAdapterServiceImpl
          Implementation for resolving event name to event type.
 

Constructors in com.espertech.esper.event with parameters of type EventAdapterService
MapEventType(String typeName, EventAdapterService eventAdapterService, Map<String,Object> propertyTypes)
          Constructor takes a type name, map of property names and types, for use with nestable Map events.
MapEventType(String typeName, Map<String,Class> propertyTypes, EventAdapterService eventAdapterService)
          Constructor takes a type name, map of property names and types.
MapPOJOEntryPropertyGetter(String propertyMap, EventPropertyGetter mapEntryGetter, EventAdapterService eventAdapterService)
          Ctor.
WrapperEventType(String typeName, EventType eventType, Map<String,Object> properties, EventAdapterService eventAdapterService)
          Ctor.
 

Uses of EventAdapterService in com.espertech.esper.event.vaevent
 

Fields in com.espertech.esper.event.vaevent declared as EventAdapterService
protected  EventAdapterService VAERevisionProcessorBase.eventAdapterService
          For interogating nested properties.
 

Methods in com.espertech.esper.event.vaevent with parameters of type EventAdapterService
 void ValueAddEventServiceImpl.addRevisionEventType(String revisionEventTypeAlias, ConfigurationRevisionEventType config, EventAdapterService eventAdapterService)
           
 void ValueAddEventService.addRevisionEventType(String alias, ConfigurationRevisionEventType config, EventAdapterService eventAdapterService)
          Adds a new revision event types.
 void ValueAddEventServiceImpl.addVariantStream(String variantStreamname, ConfigurationVariantStream variantStreamConfig, EventAdapterService eventAdapterService)
           
 void ValueAddEventService.addVariantStream(String variantEventTypeAlias, ConfigurationVariantStream variantStreamConfig, EventAdapterService eventAdapterService)
          Adds a new variant stream.
 EventType ValueAddEventServiceImpl.createRevisionType(String namedWindowName, String alias, StatementStopService statementStopService, EventAdapterService eventAdapterService)
           
 EventType ValueAddEventService.createRevisionType(String namedWindowName, String alias, StatementStopService statementStopService, EventAdapterService eventAdapterService)
          Upon named window creation, create a unique revision event type that this window processes.
 void ValueAddEventServiceImpl.init(Map<String,ConfigurationRevisionEventType> configRevision, Map<String,ConfigurationVariantStream> configVariant, EventAdapterService eventAdapterService)
           
 void ValueAddEventService.init(Map<String,ConfigurationRevisionEventType> revisionTypes, Map<String,ConfigurationVariantStream> variantStreams, EventAdapterService eventAdapterService)
          Called at initialization time, verifies configurations provided.
 

Constructors in com.espertech.esper.event.vaevent with parameters of type EventAdapterService
RevisionEventType(Map<String,RevisionPropertyTypeDesc> propertyDesc, EventAdapterService eventAdapterService)
          Ctor.
RevisionNestedPropertyGetter(EventPropertyGetter revisionGetter, EventPropertyGetter nestedGetter, EventAdapterService eventAdapterService)
          Ctor.
VAERevisionProcessorBase(RevisionSpec revisionSpec, String revisionEventTypeAlias, EventAdapterService eventAdapterService)
          Ctor.
VAERevisionProcessorDeclared(String revisionEventTypeAlias, RevisionSpec spec, StatementStopService statementStopService, EventAdapterService eventAdapterService)
          Ctor.
VAERevisionProcessorMerge(String revisionEventTypeAlias, RevisionSpec spec, StatementStopService statementStopService, EventAdapterService eventAdapterService)
          Ctor.
 

Uses of EventAdapterService in com.espertech.esper.pattern
 

Methods in com.espertech.esper.pattern that return EventAdapterService
 EventAdapterService PatternContext.getEventAdapterService()
          Returns teh service providing event adaptering or wrapping.
 

Uses of EventAdapterService in com.espertech.esper.plugin
 

Methods in com.espertech.esper.plugin that return EventAdapterService
 EventAdapterService PlugInEventRepresentationContext.getEventAdapterService()
          Returns the service for for creating further event types or wrapping event objects.
 

Constructors in com.espertech.esper.plugin with parameters of type EventAdapterService
PlugInEventRepresentationContext(EventAdapterService eventAdapterService, URI eventRepresentationRootURI, Serializable representationInitializer)
          Ctor.
 

Uses of EventAdapterService in com.espertech.esper.view
 

Methods in com.espertech.esper.view that return EventAdapterService
 EventAdapterService ViewFactoryContext.getEventAdapterService()
          Returns service for generating events and handling event types.
 

Uses of EventAdapterService in com.espertech.esper.view.std
 

Methods in com.espertech.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.
 


© 2007 EsperTech Inc.
All rights reserved.
Visit us at espertech.com