Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: Java  |  size: 0.11 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public void method(...) {
  2.         synchronized(this) {
  3.                 while(conditionNotFulfilled)
  4.                 {
  5.                         this.wait();
  6.                 }
  7.         }
  8. }