I have a boolean property that is changed based on...
# coroutines
l
I have a boolean property that is changed based on the state of a Service (in Android) to which I want to receive updates from an Activity (everything on the UI thread). Should I use
ConflatedBroadcastChannel<Boolean>
for that, or is this overkill and should I use something else?