Started

data class Started(val effectId: EffectId, val ownerId: OwnerId? = null, val triggerAction: Action) : FlowEffectEvent<Nothing>

Constructors

Link copied to clipboard
constructor(effectId: EffectId, ownerId: OwnerId? = null, triggerAction: Action)

Properties

Link copied to clipboard
open override val effectId: EffectId
Link copied to clipboard
open override val ownerId: OwnerId?
Link copied to clipboard
open override val triggerAction: Action

Functions

Link copied to clipboard
fun <R> FlowEffectEvent<R>.emittedValueOrElse(orElse: () -> R): R
fun <R, T> FlowEffectEvent<R>.emittedValueOrElse(valueTransformer: (R) -> T, orElse: () -> T): T