Uses of Interface
net.esper.eql.spec.StreamSpecCompiled

Packages that use StreamSpecCompiled
net.esper.core Implementation of client package interfaces, glue code 
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. 
 

Uses of StreamSpecCompiled in net.esper.core
 

Method parameters in net.esper.core with type arguments of type StreamSpecCompiled
protected static String[] EPStatementStartMethod.determineStreamNames(List<StreamSpecCompiled> streams)
          Returns a stream name assigned for each stream, generated if none was supplied.
 

Uses of StreamSpecCompiled in net.esper.eql.spec
 

Classes in net.esper.eql.spec that implement StreamSpecCompiled
 class DBStatementStreamSpec
          Specification object for historical data poll via database SQL statement.
 class FilterStreamSpecCompiled
          Specification for building an event stream out of a filter for events (supplying type and basic filter criteria) and views onto these events which are staggered onto each other to supply a final stream of events.
 class PatternStreamSpecCompiled
          Specification for building an event stream out of a pattern statement and views staggered onto the pattern statement.
 

Methods in net.esper.eql.spec that return StreamSpecCompiled
 StreamSpecCompiled StreamSpecRaw.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService)
          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)
           
 StreamSpecCompiled FilterStreamSpecRaw.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService)
           
 StreamSpecCompiled DBStatementStreamSpec.compile(EventAdapterService eventAdapterService, MethodResolutionService methodResolutionService, PatternObjectResolutionService patternObjectResolutionService)
           
 

Methods in net.esper.eql.spec that return types with arguments of type StreamSpecCompiled
 List<StreamSpecCompiled> StatementSpecCompiled.getStreamSpecs()
          Returns the FROM-clause stream definitions.
 

Constructor parameters in net.esper.eql.spec with type arguments of type StreamSpecCompiled
StatementSpecCompiled(InsertIntoDesc insertIntoDesc, SelectClauseStreamSelectorEnum selectClauseStreamSelectorEnum, SelectClauseSpec selectClauseSpec, List<StreamSpecCompiled> streamSpecs, List<OuterJoinDesc> outerJoinDescList, ExprNode filterExprRootNode, List<ExprNode> groupByExpressions, ExprNode havingExprRootNode, OutputLimitSpec outputLimitSpec, List<OrderByItem> orderByList, List<ExprSubselectNode> subSelectExpressions)
          Ctor.