MutableStateStream

class MutableStateStream<Value : Any>(initialValue: Value) : StateStream<Value> , Sink<Value>

A StateStream and a Sink at the same time.

It's mostly a wrapper around MutableSharedFlow with some extra "features".

Constructors

Link copied to clipboard
constructor(initialValue: Value)

Functions

Link copied to clipboard
open suspend override fun collect(collector: FlowCollector<Value>)

Accepts the given FlowCollector and emits values into it.

Link copied to clipboard
open override fun send(value: Value)

Send a Value into the sink.

Properties

Link copied to clipboard
open override val value: Value

The current value.