BlocState

abstract class BlocState<out State : Any, in Proposal : Any> : StateStream<State> , Sink<Proposal>

BlocState is the actual keeper of State. a source of asynchronous state data (StateStream) and a Sink for proposals used to potentially alter state.

It needs to be a class so generic types aren't erased in Swift.

Inheritors

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
abstract suspend override fun collect(collector: FlowCollector<State>)

StateStream.collect(FlowCollector)

Link copied to clipboard
abstract override fun send(proposal: Proposal)

Sink.send(Proposal)

Properties

Link copied to clipboard
abstract override val value: State

StateStream.value