Package edu.uci.jforestsx.util.concurrency

Examples of edu.uci.jforestsx.util.concurrency.BlockingThreadPoolExecutor


  public int getTrainingRandomSeed() {
    return trainingConfig.randomSeed;
  }

  public static void shutdown() {
    BlockingThreadPoolExecutor executor = BlockingThreadPoolExecutor.getInstance();
    if (executor != null && !executor.isShutdown()) {
      executor.shutdownNow();
    }
  }
View Full Code Here

TOP

Related Classes of edu.uci.jforestsx.util.concurrency.BlockingThreadPoolExecutor

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.