InstanceEventInvoker

internal fun interface InstanceEventInvoker : EventInvoker

Invocation strategy for instance-based event handler methods.

An InstanceEventInvoker represents a compiled or reflective call target for a handler method that operates on a specific subscriber instance. It is typically created by the event system using LambdaMetafactory for optimal performance, with reflective fallback used when lambda generation fails or is not permitted.

Functions

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

Invokes the underlying instance handler method.