Hello 🙂
I'm trying to use MutableStateFlow to log state updates but I can't quite pull it off:
• I'm starting a collect job with launch, but I can't figure out how to be sure the collect job will be started before the first update comes (I could use a condition variable but it feels pretty overkill). I'm using yield() to help make it happen, but it feels very hacky
• how can I make sure the updates get delivered to the collector once it is subscribed?