DelegatingEventHandler

class DelegatingEventHandler<E> @VisibleForTesting(otherwise = 4) constructor(eventHandler1: EventHandler<E>, eventHandler2: EventHandler<E>) : EventHandler<E>

An event handler that takes two event handlers and calls both of them when an event is dispatched.

Constructors

Link copied to clipboard
@VisibleForTesting(otherwise = 4)
constructor(eventHandler1: EventHandler<E>, eventHandler2: EventHandler<E>)

Properties

Link copied to clipboard
Link copied to clipboard
val id: Int
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard
open override fun call(vararg arguments: Any?): Void?
Link copied to clipboard
open override fun dispatchEvent(event: E): Any?
Link copied to clipboard
open override fun isEquivalentTo(other: EventHandler<*>?): Boolean
Link copied to clipboard
open override fun toString(): String