Package com.hazelcast.spi.impl

Examples of com.hazelcast.spi.impl.ExecutionServiceImpl


    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
        );
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.spi.impl.ExecutionServiceImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.