Package org.openmim.infrastructure.taskmanager

Examples of org.openmim.infrastructure.taskmanager.ThreadPool


  private SocketRegistry sr;

  public Dispatcher(SocketRegistry sr, int maxThreads, int optimumThreads)
  {
    super("simpletcp dispatcher thread #"+(count++));
    threadPool = new ThreadPool(maxThreads, optimumThreads);
    this.sr = sr;
  }
View Full Code Here

TOP

Related Classes of org.openmim.infrastructure.taskmanager.ThreadPool

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.