EventHandler is the serializable metadata record for a registered handler function.
You receive handler entries from bus.on(...), can remove them with bus.off(...), and see them in handler-change middleware/hooks.
Common fields
id: stable handler idhandler_name: callable/function namehandler_file_path: optional source path metadatahandler_timeout: optional per-handler timeout overridehandler_slow_timeout: optional slow-warning overridehandler_registered_at/handler_registered_tsevent_pattern: subscribed key (EventTypeor'*')eventbus_name,eventbus_id
bus.on(...) and bus.off(...)
- Python
- TypeScript
Serialization
- Python
- TypeScript
Notes
- Function bodies are not serialized.
- Rehydration restores metadata; execution behavior requires re-binding a real callable.