Uses of Class
net.esper.eql.spec.OutputLimitSpec

Packages that use OutputLimitSpec
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.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.eql.view Internal processing views for output rate limiting, filtering and internal event routing 
 

Uses of OutputLimitSpec in net.esper.eql.core
 

Methods in net.esper.eql.core with parameters of type OutputLimitSpec
static ResultSetProcessor ResultSetProcessorFactory.getProcessor(List<SelectExprElementUnnamedSpec> selectionList, InsertIntoDesc insertIntoDesc, List<ExprNode> groupByNodes, ExprNode optionalHavingNode, OutputLimitSpec outputLimitSpec, List<Pair<ExprNode,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.
 

Uses of OutputLimitSpec in net.esper.eql.parse
 

Methods in net.esper.eql.parse that return OutputLimitSpec
static OutputLimitSpec ASTOutputLimitHelper.buildSpec(antlr.collections.AST node)
          Build an output limit spec from the AST node supplied.
 

Uses of OutputLimitSpec in net.esper.eql.spec
 

Methods in net.esper.eql.spec that return OutputLimitSpec
 OutputLimitSpec StatementSpec.getOutputLimitSpec()
          Returns the output limit definition, if any.
 

Methods in net.esper.eql.spec with parameters of type OutputLimitSpec
 void StatementSpec.setOutputLimitSpec(OutputLimitSpec outputLimitSpec)
          Sets the output limiting definition.
 

Uses of OutputLimitSpec in net.esper.eql.view
 

Methods in net.esper.eql.view with parameters of type OutputLimitSpec
static OutputCondition OutputConditionFactory.createCondition(OutputLimitSpec outputLimitSpec, ViewServiceContext viewContext, OutputCallback outputCallback)
          Creates an output condition instance.
 

Constructors in net.esper.eql.view with parameters of type OutputLimitSpec
OutputConditionFirst(OutputLimitSpec outputLimitSpec, ViewServiceContext viewContext, OutputCallback outputCallback)
          Ctor.
OutputProcessView(ResultSetProcessor resultSetProcessor, int streamCount, OutputLimitSpec outputLimitSpec, ViewServiceContext viewContext)
          Ctor.