It feels like it's possible... it would also repre...
# coroutines
l
It feels like it's possible... it would also represent what I actually wanted to represent: emissions of the current time
b
Copy code
val timeFlow = flow {
   while (true) {
      emit(clock.now())
      delay(5.seconds)
   }
}.stateIn(scope, clock.now())