polyphonic
v0.1.0
Published
join-calculus as async flow control
Downloads
1
Readme
polyphonic
join-calculus as async flow control
Example
var polyphonic = require("polyphonic")
var Buffer = polyphonic([
["get", "async put", function (s) {
return s
}]
])
var buffer = Buffer()
var one = buffer.get()(function (err, value) {
})
var two = buffer.get()(function (err, value) {
})
// some time later!!
buffer.put("hello")
buffer.put("world")
// now the get calls have their callbacks invoked
Installation
npm install polyphonic
Contributors
- Raynos