TransitionResult

data class TransitionResult<S : Any> (state: S,actions: Completable?)

Functions

component1
Link copied to clipboard
operator fun component1(): S
component2
Link copied to clipboard
operator fun component2(): Completable?
copy
Link copied to clipboard
fun copy(state: S, actions: Completable?): TransitionResult<S>
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

actions
Link copied to clipboard
val actions: Completable?
state
Link copied to clipboard
val state: S