use of org.neo4j.storageengine.api.TransactionApplicationMode.EXTERNAL in project neo4j by neo4j.
the class BatchingTxApplier method start.
@Override
public void start() {
stopped = false;
refreshFromNewStore();
txQueue = new TransactionQueue(maxBatchSize, (first, last) -> commitProcess.commit(first, NULL, EXTERNAL));
}
Aggregations