Skip to content

Instantly share code, notes, and snippets.

@dtak1114
Created May 23, 2013 00:53
Show Gist options
  • Save dtak1114/5632066 to your computer and use it in GitHub Desktop.
Save dtak1114/5632066 to your computer and use it in GitHub Desktop.
2009-onebuf
public synchronized void get() {
while( buf == null ){
wait();
}
notify();
return buf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment