Skip to content

Instantly share code, notes, and snippets.

@divadrei
Created June 14, 2012 10:18
Show Gist options
  • Save divadrei/2929453 to your computer and use it in GitHub Desktop.
Save divadrei/2929453 to your computer and use it in GitHub Desktop.
lock(client, "myLock", false, function(locked,done) {
if(locked) {
setTimeout(done, 1000);
} else {
console.log('Somebody is already doing the job, I give up')
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment