Running

data class Running(val effectId: EffectId, val ownerId: OwnerId?, val triggerAction: Action) : EffectState<Nothing>

Constructors

Link copied to clipboard
constructor(effectId: EffectId, ownerId: OwnerId?, 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 getResultIfCompletedElse(elseProducer: () -> Nothing): Nothing
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <U> map(f: (Nothing) -> U): EffectState<U>
Link copied to clipboard
Link copied to clipboard
fun matchesId(effectId: EffectId): Boolean
Link copied to clipboard
fun matchesIdAndOwner(effectId: EffectId, ownerId: OwnerId): Boolean
Link copied to clipboard