private final StripedExecutor executor;
public WanReplicationService(NodeEngineImpl nodeEngine) {
this.node = nodeEngine.getNode();
this.logger = node.getLogger(WanReplicationService.class.getName());
final ExecutionServiceImpl executionService = (ExecutionServiceImpl) nodeEngine.getExecutionService();
this.executor = new StripedExecutor(
executionService.getCachedExecutor(),
ExecutorConfig.DEFAULT_POOL_SIZE,
ExecutorConfig.DEFAULT_QUEUE_CAPACITY
);
}