Package for scenario management events.
The core package functionalities generate Event objects to track changes on entities.
These events are then relayed to a Notifier, which handles the dispatch
to consumers interested in specific event topics.
To subscribe, a consumer needs to invoke the Notifier.register() method.
This call will yield a RegistrationId and a dedicated event queue for
receiving notifications.
To handle notifications, an event consumer can be instantiated with an associated
event queue. See (EventProcessor for more details).
Types¶
RegistrationId: Registration identifier for Core event consumption.
Classes¶
Event: Event object used to notify any change in a Taipy application.EventEntityType: Enum representing an entity type.EventOperation: Enum representing a type of operation performed on a Core entity.Notifier: A class for managing event registrations and publishing a Taipy application events.