Skip to content

Latest commit

 

History

History
42 lines (23 loc) · 1.63 KB

README.md

File metadata and controls

42 lines (23 loc) · 1.63 KB

Coroutines-Completion-Demo

Demo of the behavior of Kotlin coroutines with regards to completion.

Coroutine Builder Failure

Failure indicates that the default uncaught exception handler was invoked.

BuilderFailureUncaughtExceptionHandlerTest

BuilderFailureUncaughtExceptionHandlerTest.kt

Factory Job Child Failure

  1. Failure indicates that the default uncaught exception handler was invoked.

JobFailureUncaughtExceptionHandlerTest

JobFailureUncaughtExceptionHandlerTest.kt

  1. Failure indicates that the job failed.

JobFailureCancellationTest

JobFailureCancellationTest.kt

Scope Builder Failure

  1. Failure indicates that the scope builder function threw an exception.

ScopeFailureExceptionTest

ScopeFailureExceptionTest.kt

  1. Failure indicates that the default uncaught exception handler was invoked.

ScopeFailureUncaughtExceptionHandlerTest

ScopeFailureUncaughtExceptionHandlerTest.kt