Package aleph.thread

Examples of aleph.thread.Fork


   * @param join notify Join when thread finishes.
   **/
  public synchronized void start(PE pe, Join join) {
    if (join != null)
      join.increment();
    Fork fork = new Fork(join, this);
    try {
      cManager.send(pe, fork);
    } catch (Exception e) {
      Aleph.panic(e);
    }
View Full Code Here

TOP

Related Classes of aleph.thread.Fork

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.