Share Pastebin
Guest
Public paste!

hns

By: a guest | Feb 23rd, 2010 | Syntax: JavaScript | Size: 0.27 KB | Hits: 277 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. var lock = new java.lang.Object();
  2. var wait = sync(function() { lock.wait(2000); print('testing'); });
  3. var notify = sync(function() { lock.notify(); print('notified'); });
  4.  
  5. wait.apply(lock);
  6. notify.apply(lock);
  7.  
  8. -------------
  9. bin/ringo test.js
  10. testing
  11. notified