Package avrora.sim

Examples of avrora.sim.SimulatorThread.join()


     */
    public void join() throws java.lang.InterruptedException {
        Iterator threadIterator = threadMap.keySet().iterator();
        while (threadIterator.hasNext()) {
            SimulatorThread thread = (SimulatorThread)threadIterator.next();
            thread.join();
        }
    }

    /**
     * The <code>stop()</code> method will terminate all the simulation threads. It is
View Full Code Here


      }

      // Der folgende Teil darf nicht im synchronized-Block enthalten sein,
      // da er sonst andere Teile des Programms blockieren wuerde
      if (thread != null)
        thread.join();
    } while (! threadMap.keySet().isEmpty());
  } // join

  /**
   * Not implemented.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.