Join Slack
Powered by
When should we use StateFlow or SharedFlow instead...
# coroutines
k
K Merle
10/24/2021, 11:46 AM
When should we use StateFlow or SharedFlow instead of regular flow?
m
mbonnin
10/24/2021, 11:52 AM
Use SharedFlow if you want multiple consumers for the same producer. Use StateFlow if you need access the the last emitted value
👍 4
k
K Merle
10/24/2021, 11:59 AM
Do
.stateIn
and
.sharedIn
optimize the flow as the have
SharingStarted
logic?
3
Views
Open in Slack
Previous
Next