EventHandler
Base class for a Discord client event handler.
Pass the event name(s) as the generic, the same one(s) as @RegisterEvent. A single-event handler reads this.event (the payload tuple) directly. A handler registered for several events branches with this.match, keyed by event name, since the union of payload tuples is not directly readable.
abstract class EventHandler<
Names extends ValidNonInteractionKeys
> extends BaseHandler<ClientEvents[Names]>Member visibility
Filter class members by access level.
EventHandler(
event: ClientEvents[Names],
core: Core,
eventName?: Names
)Showing members with Protected visibility and higher.
Properties
Methods
Names
One or more ClientEvents keys, e.g. Events.MessageCreate or Events.MessageCreate | Events.MessageUpdate.
Names extends ValidNonInteractionKeysprotected readonly event: SingleEventPayload<Names>getEvent()
getEvent(): ValidEventInherited from:BaseHandler
Run the arm for whichever event fired. Use this only when the handler is registered for several events. A single-event handler reads this.event directly. On a multi-event handler this.event is never, so match is the only way to read the payload.
Provide one arm per registered event, keyed by its name, and each arm receives that event's own payload tuple. The arms must cover every event in the generic, a missing event or an unknown key is a compile error.
protected async match<Ret>(
arms: EventMatchArms<Names, Ret>
): Promise<Ret>armsOne handler per registered event, keyed by event name.