Package akka.jsr166y

Examples of akka.jsr166y.ForkJoinPool


public class JavaFuturesAnalysisEngine extends SequentialAnalysisEngine {

    private ExecutorService executor;

    public JavaFuturesAnalysisEngine() {
        this.executor = new ForkJoinPool();
    }
View Full Code Here


public class GuavaListenableFuturesAnalysisEngine extends SequentialAnalysisEngine {

    private ListeningExecutorService executor;

    public GuavaListenableFuturesAnalysisEngine() {
        this.executor = MoreExecutors.listeningDecorator(new ForkJoinPool());
    }
View Full Code Here

TOP

Related Classes of akka.jsr166y.ForkJoinPool

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.