|
|
|
|
|
by dtjohnnymonkey
5114 days ago
|
|
I've been reading back and forth between this post and the docs and I'm still not really getting it. Is this just a way of registering a single callback to respond to error events that could be emitted by different operations? What are some examples when this would be better than handling error events individually? Is it sort of like a try/catch for error events? |
|
Yes, but it's also sort of like a try/catch for thrown errors.
would console.log, rather than crashing the program.When an EventEmitter is bound to a domain, their error events and any errors thrown while emitting an event on them will be handled by the domain object that they're bound to.