Home
last modified time | relevance | path

Searched refs:UndeliveredElementException (Results 1 – 4 of 4) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DOnUndeliveredElement.kt14 undeliveredElementException: UndeliveredElementException? = null in <lambda>()
15 ): UndeliveredElementException? { in <lambda>()
24 … return UndeliveredElementException("Exception in undelivered element handler for $element", ex) in <lambda>()
43 internal class UndeliveredElementException(message: String, cause: Throwable) : RuntimeException(me… class
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DConflatedChannel.kt118 … var undeliveredElementException: UndeliveredElementException? = null // resource cancel exception in onCancelIdempotent()
126 private fun updateValueLocked(element: Any?): UndeliveredElementException? { in updateValueLocked()
DArrayChannel.kt286 …var undeliveredElementException: UndeliveredElementException? = null // first cancel exception, ot… in onCancelIdempotent()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DChannelUndeliveredElementFailureTest.kt21 this is UndeliveredElementException && cause is TestException && cause!!.message == item in isElementCancelException()