reactive/kotlinx-coroutines-rx2/src/RxScheduler.kt [119:128]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - suspend fun task() { if (disposable.isDisposed) return try { runInterruptible { decoratedBlock.run() } } catch (e: Throwable) { handleUndeliverableException(e, ctx) } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - reactive/kotlinx-coroutines-rx3/src/RxScheduler.kt [119:128]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - suspend fun task() { if (disposable.isDisposed) return try { runInterruptible { decoratedBlock.run() } } catch (e: Throwable) { handleUndeliverableException(e, ctx) } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -