how can i combine a ticker channel and a flow so t...
# coroutines
n
how can i combine a ticker channel and a flow so that on either element in flow or a tick from the channel it emits to the combined flow? is combine the correct operator there?
l
Use a loop in a flow builder with delay + emit and combine it with the other flow using the combine operator.
n
what i ended up doing is.. because i used a SharedFlow i moved out the ticker channel and emit directly to it