Exemplo n.º 1
0
  /*
   * (non-Javadoc)
   *
   * @see java.lang.Thread#run()
   */
  @Override
  public void run() {

    while (!pFinished.waitEvent(pInterval)) {
      pRunnable.run();
    }
  }
Exemplo n.º 2
0
  /** Cancels/stops the loop timer */
  public void cancel() {

    pFinished.set();
  }