Abstract
Represents the base class for all event handlers. All event handlers must extend this class and implement the handle method.
handle
Creates a new Event instance.
The client instance.
Handles the event logic. This method must be implemented by subclasses to define the behavior for the specific event.
The data associated with the event.
A promise that resolves with the result of the event handling or void.
void
Represents the base class for all event handlers. All event handlers must extend this class and implement the
handle
method.