Uses of Class
net.esper.collection.MultiKeyUntyped

Packages that use MultiKeyUntyped
net.esper.eql.agg   
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.join.table Indexes for views 
net.esper.event This package defines the Esper Client event API. 
net.esper.util Utility classes that center around Java type handling, printing, reflection, debugging 
net.esper.view.ext Extension views that providing services such as sorting, which don't fit much into other categories. 
net.esper.view.stat.olap Views computing OLAP cubes. 
 

Uses of MultiKeyUntyped in net.esper.eql.agg
 

Methods in net.esper.eql.agg with parameters of type MultiKeyUntyped
 void AggregationServiceNull.applyEnter(EventBean[] eventsPerStream, MultiKeyUntyped optionalGroupKeyPerRow)
           
 void AggregationServiceGroupByImpl.applyEnter(EventBean[] eventsPerStream, MultiKeyUntyped groupByKey)
           
 void AggregationServiceGroupAllImpl.applyEnter(EventBean[] eventsPerStream, MultiKeyUntyped optionalGroupKeyPerRow)
           
 void AggregationService.applyEnter(EventBean[] eventsPerStream, MultiKeyUntyped optionalGroupKeyPerRow)
          Apply events as entering a window (new events).
 void AggregationServiceNull.applyLeave(EventBean[] eventsPerStream, MultiKeyUntyped optionalGroupKeyPerRow)
           
 void AggregationServiceGroupByImpl.applyLeave(EventBean[] eventsPerStream, MultiKeyUntyped groupByKey)
           
 void AggregationServiceGroupAllImpl.applyLeave(EventBean[] eventsPerStream, MultiKeyUntyped optionalGroupKeyPerRow)
           
 void AggregationService.applyLeave(EventBean[] eventsPerStream, MultiKeyUntyped optionalGroupKeyPerRow)
          Apply events as leaving a window (old events).
 void AggregationServiceNull.setCurrentRow(MultiKeyUntyped groupKey)
           
 void AggregationServiceGroupByImpl.setCurrentRow(MultiKeyUntyped groupByKey)
           
 void AggregationServiceGroupAllImpl.setCurrentRow(MultiKeyUntyped groupKey)
           
 void AggregationService.setCurrentRow(MultiKeyUntyped groupKey)
          Set the current aggregation state row - for use when evaluation nodes are asked to evaluate.
 

Uses of MultiKeyUntyped in net.esper.eql.core
 

Methods in net.esper.eql.core with parameters of type MultiKeyUntyped
 AggregationMethod[] MethodResolutionServiceImpl.newAggregators(AggregationMethod[] prototypes, MultiKeyUntyped groupKey)
           
 AggregationMethod[] MethodResolutionService.newAggregators(AggregationMethod[] prototypes, MultiKeyUntyped groupKey)
          Returns a new set of aggregators given an existing prototype-set of aggregators for a given group key.
 EventBean[] OrderByProcessorSimple.sort(EventBean[] outgoingEvents, EventBean[][] generatingEvents, MultiKeyUntyped[] groupByKeys, boolean isNewData)
           
 EventBean[] OrderByProcessor.sort(EventBean[] outgoingEvents, EventBean[][] generatingEvents, MultiKeyUntyped[] groupByKeys, boolean isNewData)
          Sort the output events, using the provided group-by keys for evaluating grouped aggregation functions, and avoiding the cost of recomputing the keys.
 

Uses of MultiKeyUntyped in net.esper.eql.join.table
 

Fields in net.esper.eql.join.table with type parameters of type MultiKeyUntyped
protected  Map<MultiKeyUntyped,Set<EventBean>> PropertyIndexedEventTable.propertyIndex
          Index table.
 

Methods in net.esper.eql.join.table that return MultiKeyUntyped
protected  MultiKeyUntyped PropertyIndTableCoerceAdd.getMultiKey(EventBean event)
           
protected  MultiKeyUntyped PropertyIndexedEventTable.getMultiKey(EventBean event)
          Determine multikey for index access.
 

Uses of MultiKeyUntyped in net.esper.event
 

Methods in net.esper.event that return MultiKeyUntyped
static MultiKeyUntyped EventBeanUtility.getMultiKey(EventBean event, EventPropertyGetter[] propertyGetters)
          Returns Multikey instance for given event and getters.
 

Uses of MultiKeyUntyped in net.esper.util
 

Methods in net.esper.util with parameters of type MultiKeyUntyped
 int MultiKeyComparator.compare(MultiKeyUntyped firstValues, MultiKeyUntyped secondValues)
           
 

Uses of MultiKeyUntyped in net.esper.view.ext
 

Method parameters in net.esper.view.ext with type arguments of type MultiKeyUntyped
 void IStreamSortedRandomAccess.refresh(TreeMap<MultiKeyUntyped,LinkedList<EventBean>> sortedEvents, int currentSize, int maxSize)
          Refreshes the random access data with the updated information.
 

Constructor parameters in net.esper.view.ext with type arguments of type MultiKeyUntyped
SortWindowIterator(SortedMap<MultiKeyUntyped,LinkedList<EventBean>> window)
          Ctor.
 

Uses of MultiKeyUntyped in net.esper.view.stat.olap
 

Methods in net.esper.view.stat.olap with parameters of type MultiKeyUntyped
 V MultidimCubeImpl.getCell(MultiKeyUntyped coordinates)
           
 V MultidimCube.getCell(MultiKeyUntyped coordinates)
          Get a cell, returns null if the cell does not yet exist.
 V MultidimCubeImpl.getCellAddMembers(MultiKeyUntyped coordinates)
           
 V MultidimCube.getCellAddMembers(MultiKeyUntyped coordinates)
          Get a cell adding the coordinate members if the cell does not yet exist.