Package cl.niclabs.skandium.system

Examples of cl.niclabs.skandium.system.TaskExecutor


   */
  public Skandium(int maxThreads){
   
    if(maxThreads < 1) throw new IllegalArgumentException("The specified number of threads must be larger than 1");
   
    executor = new TaskExecutor(maxThreads);   
    eregis = new SkandiumEventRegistry();
  }
View Full Code Here

TOP

Related Classes of cl.niclabs.skandium.system.TaskExecutor

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.