co-lock
v0.0.1
Published
Lock resources asyncrounously
Readme
co-lock
Asyncronous resources, generator style. Finally, Javascript has deadlocks!
Install
$ npm install co-lockUsage
var release = yield lock(target);
// critical section
yield release;API
lock(target[, timeout])
Creates a lock on target, yields with release when the lock can be acquired.
If cannot acquire lock within timeout, throws error.
License
MIT
