Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trigger Promise when an event fires

My entire project uses (Bluebird) Promises, but there's one particular library that uses EventEmitter.

I want to achieve something like:

Promise.on('connect', function() {
    x.doSomething();
}).then(function() {
    return new Promise(function(resolve) {
        y.doAction(resolve); // this will result in `eventB` getting emitted
    });
}).on('eventB', function() {
    z.handleEventB();
}).then(function() {
    z.doSomethingElse();
});

I read the answer to EventEmitter in the middle of a chain of Promises. That gives me a way to execute the callback for 'connect' event. Here's where I have got so far

var p = new Promise(function(resolve) {
    emitter.on('connect', resolve);
});
p.on = function() {
    emitter.on.apply(emitter, arguments);
    return p;
};
p.on('connect', function() {
    x.doSomething();
}).then(function() {
    return new Promise(function(resolve) {
        y.doAction(resolve); // this will result in eventB getting emitted
    });
});

Now how to chain further for 'eventB' ?

like image 818
Jaydeep Solanki Avatar asked Apr 29 '15 02:04

Jaydeep Solanki


People also ask

What is a Promise event?

An asynchronous event listener for Promise/A+ implementations. This module inherits Node's built-in EventEmitter interface, except that selected methods are overridden to return a promise for easy workflow.

How do you return a Promise from a function?

Promise resolve() method: If the value is a promise then promise is returned. If the value has a “then” attached to the promise, then the returned promise will follow that “then” to till the final state. The promise fulfilled with its value will be returned.

Is setTimeout a Promise?

setTimeout() is not exactly a perfect tool for the job, but it's easy enough to wrap it into a promise: const awaitTimeout = delay => new Promise(resolve => setTimeout(resolve, delay)); awaitTimeout(300).


2 Answers

I assume you want to do a different chain of things for each event. Even if eventB is triggered by the actions of connect, you can treat it like another stream of logic.

Side note: To avoid confusion for you and anyone else who has to read this codebase, I'd recommend against supplementing promises with additional methods unless you are very thorough about documenting them.

From your example, it seems like the following would work.

var Promise = require( 'bluebird' ) var emitter = someEmitter() var connected = new Promise( function( resolve ){     emitter.on( 'connect', resolve ) })  var eventBHappened = new Promise( function( resolve ){     emitter.on( 'eventB', resolve ) })  connected.then( function(){     return x.doSomething() }).then( function(){     return y.doSomethingElse() // will trigger `eventB` eventually })  // this promise stream will begin once `eventB` has been triggered eventBHappened.then( function(){      return z.doSomething() }) 

If you'd like to simplify this constant

var p = new Promise( function( resolve ){     emitter.on( 'something', resolve ) }) 

You can use something like this

function waitForEvent( emitter, eventType ){     return new Promise( function( resolve ){         emitter.on( eventType, resolve )     }) } 

Which turns the code solution above into

var Promise = require( 'bluebird' ) var emitter = someEmitter()  function waitForEvent( eventEmitter, eventType ){     return new Promise( function( resolve ){         eventEmitter.on( eventType, resolve )     }) }  waitForEvent( emitter, 'connect' ).then( function(){     return x.doSomething() }).then( function(){     return y.doSomethingElse() // will trigger `eventB` eventually })  // this promise stream will begin once `eventB` has been triggered waitForEvent( emitter, 'eventB' ).then( function(){      return z.doSomething() }) 

And because functions in Javascript capture the scope where they were defined, this code could be further simplified to

var Promise = require( 'bluebird' ) var emitter = someEmitter()  function waitForEvent( type ){     return new Promise( function( resolve ){         //emitter has been captured from line #2         emitter.on( type, resolve )      }) }  waitForEvent( 'connect' ).then( function(){     return x.doSomething() }).then( function(){     return y.doSomethingElse() // will trigger `eventB` eventually })  // this promise stream will begin once `eventB` has been triggered waitForEvent( 'eventB' ).then( function(){      return z.doSomething() }) 
like image 184
JoshWillik Avatar answered Oct 16 '22 23:10

JoshWillik


I faced with the same problem and wrote a tiny promise-wrapping library (controlled-promise) that allows to promisify event emitters. The solution for your example is:

const Promise = require('bluebird'); const ControlledPromise = require('controlled-promise');  const emitter = someEmitter(); const waiting = new ControlledPromise();  function waitForEvent(type) {     return waiting.call(() => {        emitter.once(type, event => waiting.resolve(event));     }); }  waitForEvent('connect')     .then(() => x.doSomething())     .then(() => waitForEvent('eventB'))     .then(() => z.doSomethingElse()); 

The benefits of such approach:

  • automatic return of existing promise while it is pending
  • easy access to resolve() / reject() callbacks
like image 43
vitalets Avatar answered Oct 16 '22 21:10

vitalets