Котлин: изменяемое поведение буферного потока при первом запуске
#kotlin #kotlin-coroutines #kotlin-flow Вопрос: У меня есть следующий фрагмент кода: val flow = MutableSharedFlow<Int>() launch { repeat(10) { delay(100) println("emitting$it") flow.emit(it) } } launch { flow.collect { delay(1000) println("a$it") }…