Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/tailcall/
DSimpleChannel.kt56 abstract suspend fun suspendSend(element: Int) in suspendReceive() method in benchmarks.tailcall.SimpleChannel
65 override suspend fun suspendSend(element: Int) = suspendCoroutineUninterceptedOrReturn<Unit> { in suspendReceive() method in benchmarks.tailcall.NonCancellableChannel
78 override suspend fun suspendSend(element: Int) = suspendCancellableCoroutine<Unit> { in <lambda>() method in benchmarks.tailcall.CancellableChannel
93 override suspend fun suspendSend(element: Int) = suspendCancellableCoroutineReusable<Unit> { in <lambda>() method in benchmarks.tailcall.CancellableReusableChannel