Companion

Functions

Link copied to clipboard
fun <A> mergeAll(vararg events: Event<A>): Event<List<A>>
Link copied to clipboard
fun <A> merged(vararg events: Event<A>): Event<A>

Merges Events using the Leftmost strategy.

Link copied to clipboard
fun <A> mergedWith(strategy: MergeStrategy<A>, vararg events: Event<A>): Event<A>

Merges Events using the supplied MergeStrategy to handle the case of simultaneous events.

Link copied to clipboard
fun tick(delayTime: Duration): Event<Duration>

Create an event that triggers every delayTime.