Provides a single interface to multiple event dispatchers.
Events are switched to the the first event dispatcher in a list of dispatchers that supports the event, the other dispatchers are ignored for that particular event.
This is also how remove_handlers will look for handlers, it will only remove the handlers of each event’s first found dispatcher; the other ones are ‘hidden’ by this one, for this event.
Check Dispatcher for the documentation of the methods that are left undocumented here.
Instance methods:
- append_dispatchers: Add dispatchers to the list of dispatchers
- ...
Add dispatchers to the end of the list of dispatchers.
Parameters:
- dispatchers :: (Dispatcher...)
- sequence of dispatchers to append