StaticEventInvoker

internal fun interface StaticEventInvoker : EventInvoker

Invocation strategy for static event handler methods.

A StaticEventInvoker represents a compiled or reflective call target for a handler method that does not require an instance receiver. It is typically created by the event system using LambdaMetafactory for optimal performance, with a reflective fallback when necessary.

Functions

Link copied to clipboard
abstract operator fun invoke(event: Event)

Invokes the underlying static handler method.