Created
August 19, 2022 13:23
-
-
Save aleksandarzekovic/e7bdbef9c631639fe9ee72e43fa606cc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private open class StandaloneCoroutine( | |
parentContext: CoroutineContext, | |
active: Boolean | |
) : AbstractCoroutine<Unit>(parentContext, initParentJob = true, active = active) { | |
override fun handleJobException(exception: Throwable): Boolean { | |
handleCoroutineException(context, exception) | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment