async-emit
Emits an event on an EventEmitter where the listener may include a callback function
An asyncEmit()
function that accepts an EventEmitter, an Array of args, and
a callback function. If the emitter listener function has an arity
> args.length then there is an assumed callback function on the emitter, which
means that it is doing some async work. We have to wait for the callbacks for
any async listener functions.
It works like this:
var emitter =// this is an async listeneremitter// this is a sync listener, no callback functionemitter