ViolationKind¶
Namespace:
SideXP.Broadcaster
A misuse of the bus the monitor reports, matching the diagnostics the bus also logs (or throws) in the editor and development builds.
Fields¶
UnhandledCommand¶
A command was ordered but no handler is registered for it.
UnansweredRequest¶
A request was asked but no handler is registered to answer it.
MultipleHandlers¶
A second handler was registered for an event type; the first stays authoritative and the new one is ignored.
MultipleProviders¶
A second provider was registered for a signal type; the first stays authoritative and the new one is ignored.
SyncCallOnAsyncHandler¶
A synchronous verb was used on a type whose handler is asynchronous (it can't be completed in one call).