IRCPluginImpl.onEvent

Forwards the supplied IRCEvent to IRCPluginImpl.onEventImpl.

This is made a separate function to allow plugins to override it and insert their own code, while still leveraging IRCPluginImpl.onEventImpl

for the actual dirty work.

mixintemplate IRCPluginImpl(Flag!"debug_" debug_ = No.debug_, string module_ = __MODULE__)
@safe pragma(inline, true) override @system
void
onEvent
(
const ref IRCEvent event
)

Parameters

event IRCEvent

Parsed IRCEvent to pass onto IRCPluginImpl.onEventImpl.

See Also

Meta