0.0.1 • Published 11 years ago
co-lock v0.0.1
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