If I update a `StateFlow` value from `Dispatchers....
# flow
j
If I update a
StateFlow
value from
Dispatchers.Main
, and have some separate code collecting the flow also on
Dispatchers.Main
, can I guarantee that the collector receives the value immediately (synchronously) after the state flow emits?
e
maybe MainCoroutineDispatcher.immediate but no, I wouldn't expect that from .Main