async-event-emitter2
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

NPM version NPM downloads build MIT License

async-event-emitter2

The original async-eventemitter package by Andreas Hultgren wasn't updated for several years now and this is an effort to support newer versions. Below is the original README:

An EventEmitter that supports serial execution of asynchronous event listeners. It also supports event listeners without callbacks (synchronous), as well as interrupting the call-chain (similar to the DOM's e.stopPropagation()).

Example

const AsyncEventEmitter2 = require('async-event-emitter2');
const events = new AsyncEventEmitter2();

events.on('test', (e, next) => {
  // The next event listener will wait till this is done
  setTimeout(next, 1000);
});

events
  .on('test', (e) => {
    // This is a synchronous event listener (note the lack of a second callback argument)
    console.log(e);
    // { data: 'data' }
  })
  .on('test', (e, next) => {
    // Even if this is not truly asynchronous, next() can be used to stop propagation
    next(new Error('You shall not pass'));
  });

events.emit('test', { data: 'data' }, (err) => {
  // This runs after all event listeners are done
  console.log(err);
  // [Error: You shall not pass]
});

More examples are found in the test-folder.

Important differences between AsyncEventEmitter the native EventEmitter

The API and behavior of AsyncEventEmitter is as far as possible and meaningful identical to that of the native EventEmitter. However there are some important differences which should be noted.

  • Data sent to event listeners (e.g. emit(data)) must always be zero or one argument, and can not be a function.
  • Event listeners will always receive the data object, which may or may not be undefined.
  • The second argument can only be a callback, and will only be supplied if the event listener has an arity of two or more (e.g. (e, next) => { }).
  • Event listeners with an arity of one or zero (e.g. without a callback argument specified) will be treated as synchronous.
  • Even if all event listeners are synchronous, they will still be executed asynchronously (through setImmediate) and thus code succeeding .emit() will be executed before any event listeners.
  • Interrupt the callback chain in async listeners by calling the callback with the error as the first parameter; in sync listeners by throwing an Error.

Usage

Unchanged

For addListener() on() once() removeListener() removeAllListeners() setMaxListeners() listeners() see the EventEmitter docs, nothing new here.

emit(event, [data], [callback])

Executes all listeners for the event in order with the supplied data argument. The optional callback is called when all of the listeners are done.

.first(event, new)

Adds a listener to the beginning of the listeners array for the specified event.

.at(event, index, listener)

Adds a listener at the specified index in the listeners array for the specified event.

.before(event, target, listener)

Adds a listener before the target listener in the listeners array for the specified event.

.after(event, target, listener)

Adds a listener after the target listener in the listeners array for the specified event.

Contribution

  1. Create an issue and tell me what you're gonna do, just to make sure there's no duplicate work.
  2. Fork and branch your feature-branch of the develop branch.
  3. Write tests for changed/added functionality and make sure you don't break existing ones.
  4. Adhere to existing code style.
  5. Submit a pull-request to the develop branch.

License

async-event-emitter2 is released under the MIT License.

Dependents (1)

Package Sidebar

Install

npm i async-event-emitter2

Weekly Downloads

592

Version

0.0.2

License

MIT

Unpacked Size

26.2 kB

Total Files

5

Last publish

Collaborators

  • pantelisgeorgiadis