/**
* @return the new instance of {@link Index} which uses given {@link IndexStore}.
*/
public static Index newIndex(IndexStore store) {
OperationQueue queue = new OperationQueue();
OperationProcessor processor = new OperationProcessor(queue);
return new IndexImpl(store, queue, processor);
}