Uses of Interface
net.esper.eql.join.table.EventTable

Packages that use EventTable
net.esper.eql.join Join process interfaces and glue code 
net.esper.eql.join.plan Inner join and outer join query planning 
net.esper.eql.join.table Indexes for views 
 

Uses of EventTable in net.esper.eql.join
 

Methods in net.esper.eql.join that return EventTable
protected static EventTable JoinSetComposerFactory.buildIndex(int indexedStreamNum, String[] indexProps, EventType eventType)
          Build an index/table instance using the event properties for the event type.
protected  EventTable[][] JoinSetComposerImpl.getTables()
          Returns tables.
 

Constructors in net.esper.eql.join with parameters of type EventTable
JoinSetComposerImpl(EventTable[][] repositories, QueryStrategy[] queryStrategies)
          Ctor.
 

Uses of EventTable in net.esper.eql.join.plan
 

Methods in net.esper.eql.join.plan with parameters of type EventTable
 ExecNode TableOuterLookupNode.makeExec(EventTable[][] indexesPerStream, EventType[] streamTypes)
           
 ExecNode TableLookupNode.makeExec(EventTable[][] indexesPerStream, EventType[] streamTypes)
           
abstract  ExecNode QueryPlanNode.makeExec(EventTable[][] indexesPerStream, EventType[] streamTypes)
          Make execution node from this specification.
 ExecNode NestedIterationNode.makeExec(EventTable[][] indexPerStream, EventType[] streamTypes)
           
 ExecNode LookupInstructionQueryPlanNode.makeExec(EventTable[][] indexesPerStream, EventType[] streamTypes)
           
 LookupInstructionExec LookupInstructionPlan.makeExec(EventTable[][] indexesPerStream, EventType[] streamTypes)
          Constructs the executable from the plan.
abstract  TableLookupStrategy TableLookupPlan.makeStrategy(EventTable[][] indexesPerStream, EventType[] eventTypes)
          Instantiates the lookup plan into a execution strategy for the lookup.
 TableLookupStrategy IndexedTableLookupPlan.makeStrategy(EventTable[][] indexesPerStream, EventType[] eventTypes)
           
 TableLookupStrategy FullTableScanLookupPlan.makeStrategy(EventTable[][] indexesPerStream, EventType[] eventTypes)
           
 

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

Classes in net.esper.eql.join.table that implement EventTable
 class PropertyIndexedEventTable
          Index that organizes events by the event property values into hash buckets.
 class UnindexedEventTable
          Simple table of events without an index.