All Downloads are FREE. Search and download functionalities are using the official Maven repository.

appleMain.Channel.kt Maven / Gradle / Ivy

There is a newer version: 0.35.0-rc
Show newest version
package com.juul.kable

import kotlinx.coroutines.channels.SendChannel
import kotlinx.coroutines.runBlocking

internal fun  SendChannel.sendBlocking(element: E) {
    if (trySend(element).isSuccess) return
    runBlocking { send(element) }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy