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
classEventResult(BaseModel):
...
order: int=0# any int order, lower numbers go first, higher go later# e.g. for a special handler that should run before all other handlers, set to -100# for a cleanup/teardown handler that should run after all others, set to 100, etc.
when parallel_handlers = False currently handlers are executed in FIFO order based on handler registration order. when set, event_handler_order should allow overriding which handlers execute and in what order on a per-event basis.
if set, it should warn if parallel_handlers is True because it will be ignored.