Synchronously calls each of the listeners registered for the event named eventName, in the order they were registered, passing the supplied arguments to each.
The name of the event.
Rest
...args: any[]Returns true if the event had listeners, false otherwise.
Adds a one time listener function for the event named eventName. The next time eventName is triggered, this listener is removed and then invoked.
The name of the event.
Listener fn that handles the evt.
The Emitter instance.
Generated using TypeDoc
Subset of node's Emitter class
Param
Optional logger instance. Must comply to the Console interface.