Home
last modified time | relevance | path

Searched defs:toChannel (Results 1 – 5 of 5) sorted by relevance

/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxChannel.kt33 internal fun <T> MaybeSource<T>.toChannel(): ReceiveChannel<T> { in collect() method
40 internal fun <T> ObservableSource<T>.toChannel(): ReceiveChannel<T> { in toChannel() method
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DChannel.kt22 internal fun <T> Publisher<T>.toChannel(request: Int = 1): ReceiveChannel<T> { in <lambda>() method
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DChannelzProtoUtil.java342 static Channel toChannel(InternalInstrumented<ChannelStats> channel) { in toChannel() method in ChannelzProtoUtil
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DChannelzProtoUtilTest.java572 public void toChannel() throws Exception { in toChannel() method in ChannelzProtoUtilTest
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DDeprecated.kt276 internal suspend fun <E, C : SendChannel<E>> ReceiveChannel<E>.toChannel(destination: C): C { in toChannel() method