Event Type
The data type definitions included in the event instance
The data type definition of the data sent back to the event dispatcher by the event handler through evt.sendResult(data)
The data contained in the event instance
Did it prevent the spread of the event?
Prevent the invocation of listeners of the same type.
Did it prevent the default behavior of the event?
Prevent the default behavior of the event
Send data to the event dispatcher.
Wait for the listener of waiting time to return data.
Clone event instance
Whether to ignore the returned data. If it is true, the cloned event instance cannot send back data through evt.sendResult(data)
.
Event Base Class Event<T, D = void, R = void>