Up to this point, if a user wants to listen to events from sumo activities, it has to provide its own gen_event dispatcher.
It would be a much better idea to just add a sumo_events_sup supervisor with a one_for_one strategy that basically boots up a gen_event dispatcher per each dispatcher listed on the events section of the app configuration.
Up to this point, if a user wants to listen to events from sumo activities, it has to provide its own
gen_event
dispatcher. It would be a much better idea to just add asumo_events_sup
supervisor with aone_for_one
strategy that basically boots up agen_event
dispatcher per each dispatcher listed on theevents
section of the app configuration.