Article From:https://segmentfault.com/q/1010000012152489
Question:
ep.after('event1', arr1.length, list => {
})
ep.after('event2', arr2.length, list => {
// This has no effect})
eventproxyCan’t after write more than one?
Answer 0:
You can write more than one, but it is bound to 2 different duplication events, and when you trigger, you trigger the event by the event name of the event monitor at the binding.
Link of this Article: Can’t after of eventproxy in node write more than one?