this.tripleFactory = new TripleFactoryImpl(readWriteGraph, elementFactory);
this.resourceIteratorFactory = new ResourceIteratorFactoryImpl(longIndexes, resourceFactory, nodePool);
}
private List<GraphHandler> createGraphHandlers(LongIndex[] newLongIndexes) {
final GraphHandler graphHandler012 = new GraphHandler012(newLongIndexes, nodePool);
final GraphHandler graphHandler120 = new GraphHandler120(newLongIndexes, nodePool);
final GraphHandler graphHandler201 = new GraphHandler201(newLongIndexes, nodePool);
return asList(graphHandler012, graphHandler120, graphHandler201);
}