Uses of Interface
net.esper.eql.core.AutoImportService

Packages that use AutoImportService
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.expression This package contains the EQL expression nodes that represent all expressions such as used in select clauses, group-by and having clauses, or order-by clauses 
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.filter Main switchboard filtering and routing of incoming events to interested statements is performed in this package. 
net.esper.util Utility classes that center around Java type handling, printing, reflection, debugging 
 

Uses of AutoImportService in net.esper.core
 

Methods in net.esper.core that return AutoImportService
 AutoImportService EPServicesContext.getAutoImportService()
          Returns the import and class name resolution service.
protected static AutoImportService EPServicesContextFactoryDefault.makeAutoImportService(ConfigurationSnapshot configSnapshot)
          Constructs the auto import service.
 

Constructors in net.esper.core with parameters of type AutoImportService
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 AutoImportService in net.esper.eql.core
 

Classes in net.esper.eql.core that implement AutoImportService
 class AutoImportServiceImpl
          A service that allows users to refer to classes by partial names.
 

Methods in net.esper.eql.core with parameters of type AutoImportService
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.
 

Uses of AutoImportService in net.esper.eql.expression
 

Methods in net.esper.eql.expression with parameters of type AutoImportService
 ExprNode ExprNode.getValidatedSubtree(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
          Validates the expression node subtree that has this node as root.
 void ExprValidator.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
          Validate node.
 void ExprSumNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprStddevNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprStaticMethodNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprRelationalOpNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprRegexpNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprPriorNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprPreviousNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprOrNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprNotNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprMinMaxRowNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprMinMaxAggrNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprMedianNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprMathNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprLikeNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprInNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprIdentNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprEqualsNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprCountNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprConstantNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprConcatNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprCoalesceNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprCaseNode.validate(StreamTypeService streamTypeService_, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprBitWiseNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprBetweenNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprAvgNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprAvedevNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprArrayNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 void ExprAndNode.validate(StreamTypeService streamTypeService, AutoImportService autoImportService, ViewResourceDelegate viewResourceDelegate)
           
 

Uses of AutoImportService in net.esper.eql.spec
 

Methods in net.esper.eql.spec with parameters of type AutoImportService
 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)
           
 

Uses of AutoImportService in net.esper.filter
 

Methods in net.esper.filter with parameters of type AutoImportService
static FilterSpecCompiled FilterSpecCompiler.makeFilterSpec(EventType eventType, List<ExprNode> filterExpessions, LinkedHashMap<String,EventType> taggedEventTypes, StreamTypeService streamTypeService, AutoImportService autoImportService)
          Factory method for compiling filter expressions into a filter specification for use with filter service.
 

Uses of AutoImportService in net.esper.util
 

Methods in net.esper.util with parameters of type AutoImportService
static Method StaticMethodResolver.resolveMethod(String className, String methodName, Class[] paramTypes, AutoImportService autoImportService)
          Attempts to find the static method described by the parameters, or a method of the same name that will accept the same type of parameters.