Class events
- Last Updated: January 16, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
An event is a condition—typically, a behavior and/or data change—that you can identify in your application. You then write code to publish the event when the event condition occurs. The class where you identify the condition and publish the event is referred to as the publisher class.
Subscribers of the event can specify an action, called an event handler, that executes when the event is published. The event handler is a class method in the subscriber class.