indexingStrategies[count] = JoinSetComposerPrototypeFactory.determineIndexing(queryGraph, typesPerStream[historicalStreamNum], typesPerStream[sampleStreamViewStreamNum], historicalStreamNum, sampleStreamViewStreamNum).getSecond();
count++;
}
// create a master indexing strategy that utilizes each indexing strategy to create a set of indexes
masterIndexingStrategy = new PollResultIndexingStrategy() {
public EventTable index(List<EventBean> pollResult, boolean isActiveCache)
{
EventTable[] tables = new EventTable[numIndexes];
for (int i = 0; i < numIndexes; i++)
{