exceptionHandler
expect fun exceptionHandler(coroutineExceptionHandler: CoroutineExceptionHandler): EventChannel<BaseEvent>
Content copied to clipboard
创建一个新的 EventChannel, 该 EventChannel 包含 this.coroutineContext 和添加的 coroutineExceptionHandler
See also
expect fun exceptionHandler(coroutineExceptionHandler: (exception: Throwable) -> Unit): EventChannel<BaseEvent>
Content copied to clipboard
创建一个新的 EventChannel, 该 EventChannel 包含 this.coroutineContext
和添加的 coroutineExceptionHandler
See also
fun exceptionHandler(coroutineExceptionHandler: Consumer<Throwable>): EventChannel<BaseEvent>
Content copied to clipboard
创建一个新的 EventChannel, 该 EventChannel 包含 this.coroutineContext
和添加的 coroutineExceptionHandler
Since
2.12
See also
actual fun exceptionHandler(coroutineExceptionHandler: (exception: Throwable) -> Unit): EventChannel<BaseEvent>
Content copied to clipboard
创建一个新的 EventChannel, 该 EventChannel 包含 this.coroutineContext
和添加的 coroutineExceptionHandler
See also
actual fun exceptionHandler(coroutineExceptionHandler: CoroutineExceptionHandler): EventChannel<BaseEvent>
Content copied to clipboard
创建一个新的 EventChannel, 该 EventChannel 包含 this.coroutineContext 和添加的 coroutineExceptionHandler
See also
actual fun exceptionHandler(coroutineExceptionHandler: (exception: Throwable) -> Unit): EventChannel<BaseEvent>
Content copied to clipboard
创建一个新的 EventChannel, 该 EventChannel 包含 this.coroutineContext
和添加的 coroutineExceptionHandler