You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all dispatches are immediate, and run on the same thread calling post. Some applications may have reason to defer the processing of events to a "main thread" or some other arbitrary queue.
An implementation of this should probably focus on per-Listener dispatch, since deferring all posted events can already easily be done by extending EventManager.
The text was updated successfully, but these errors were encountered:
Currently, all dispatches are immediate, and run on the same thread calling
post
. Some applications may have reason to defer the processing of events to a "main thread" or some other arbitrary queue.An implementation of this should probably focus on per-Listener dispatch, since deferring all posted events can already easily be done by extending
EventManager
.The text was updated successfully, but these errors were encountered: