Open
Description
Just like their names, these functions should return a Promise (maybe when no callback function specified)
- putAsync
- takeAsync
Use with es7 async/await function
await putAsync(ch, 42);
...
var res = await takeAsync(ch);
Use with other libraries like co
yield putAsync(ch, 42);
...
var res = yield takeAsync(ch);
Metadata
Metadata
Assignees
Labels
No labels