EventListener

fun interface EventListener<E : Event>

Java-friendly event listener functional interface.

Kotlin users can still pass lambdas naturally; Java users can pass lambdas or method references without touching Kotlin function types.

Functions

Link copied to clipboard
abstract fun onEvent(event: E)