DocumentStore s = builder.getDocumentStore();
if (builder.getTiming()) {
s = new TimingDocumentStoreWrapper(s);
}
if (builder.getLogging()) {
s = new LoggingDocumentStoreWrapper(s);
}
this.store = s;
this.executor = builder.getExecutor();
this.clock = builder.getClock();
int cid = builder.getClusterId();