Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
final class ControlledStop implements Runnable {
  private volatile boolean done = false;

  // ...
  @Override public void run() {
    //...
  }

  // ...
}

The volatile flag establishes a happens-before relationship between this thread and any other thread that sets done.

...