You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add event emitters which emit worker events via the mixdown object.
Usage
mixdown.on('worker-spawn', function(worker) {
// do something with the new child.
});
mixdown.on('worker-ready', function(worker) {
// do something now that the new child is ready to take requests (e.g. init is complete)
});
mixdown.on('worker-died', function(worker) {
// do something about the death of the worker.
});
The text was updated successfully, but these errors were encountered:
Add event emitters which emit worker events via the mixdown object.
Usage
The text was updated successfully, but these errors were encountered: