Uses of Interface
net.esper.eql.expression.OrderByProcessor

Packages that use OrderByProcessor
net.esper.eql.expression   
 

Uses of OrderByProcessor in net.esper.eql.expression
 

Classes in net.esper.eql.expression that implement OrderByProcessor
 class OrderByProcessorSimple
          An order-by processor that sorts events according to the expressions in the order_by clause.
 

Methods in net.esper.eql.expression that return OrderByProcessor
static OrderByProcessor OrderByProcessorFactory.getProcessor(java.util.List<SelectExprElement> 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.
 

Methods in net.esper.eql.expression with parameters of type OrderByProcessor
protected static EventBean[] ResultSetProcessorSimple.getSelectListEvents(SelectExprProcessor exprProcessor, OrderByProcessor orderByProcessor, EventBean[] events, boolean isOutputLimiting, boolean isOutputLimitLastOnly)
          Applies the select-clause to the given events returning the selected events.
protected static EventBean[] ResultSetProcessorSimple.getSelectListEvents(SelectExprProcessor exprProcessor, OrderByProcessor orderByProcessor, java.util.Set<MultiKey<EventBean>> events, boolean isOutputLimiting, boolean isOutputLimitLastOnly)
          Applies the select-clause to the given events returning the selected events.
 

Constructors in net.esper.eql.expression with parameters of type OrderByProcessor
ResultSetProcessorAggregateAll(SelectExprProcessor selectExprProcessor, OrderByProcessor orderByProcessor, AggregationService aggregationService, ExprNode optionalHavingNode, boolean isOutputLimiting, boolean isOutputLimitLastOnly)
          Ctor.
ResultSetProcessorAggregateGrouped(SelectExprProcessor selectExprProcessor, OrderByProcessor orderByProcessor, AggregationService aggregationService, java.util.List<ExprNode> groupKeyNodes, ExprNode optionalHavingNode, boolean isOutputLimiting, boolean isOutputLimitLastOnly)
          Ctor.
ResultSetProcessorRowPerGroup(SelectExprProcessor selectExprProcessor, OrderByProcessor orderByProcessor, AggregationService aggregationService, java.util.List<ExprNode> groupKeyNodes, ExprNode optionalHavingNode, boolean isOutputLimiting, boolean isOutputLimitLastOnly)
          Ctor.
ResultSetProcessorSimple(SelectExprProcessor selectExprProcessor, OrderByProcessor orderByProcessor, boolean isOutputLimiting, boolean isOutputLimitLastOnly)
          Ctor.