
commonMain.flow.internal.NopCollector.kt Maven / Gradle / Ivy
package kotlinx.coroutines.flow.internal
import kotlinx.coroutines.flow.*
internal object NopCollector : FlowCollector {
override suspend fun emit(value: Any?) {
// does nothing
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy