off

abstract fun <E : T> off(eventClass: KClass<E>, action: (E) -> Unit)

Unsubscribes the action for the specified event.


abstract fun <E : T> off(action: (E) -> Unit)

Unsubscribes the action for all events.


open override fun <E : T> off(eventClass: Class<E>, eventListener: EventListener<in E>)

Unsubscribes the eventListener for the specified event.


open override fun <E : T> off(eventListener: EventListener<in E>)

Unsubscribes the eventListener for all events.