-
-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Kotlin coroutines #277
base: master
Are you sure you want to change the base?
Conversation
I'm not interested in adding kotlin to the build. There has to be a less invasive way to pull this off.... Id suggest trying to achieve this by registering your own context, and maybe setting exception handler. |
Do you mean that you don't want kotlin in every final jar of acf, or don't want kotlin at build time at all? Edit: Sorry! I was wrong. <optional> didn't do what I expected! |
Handle case when kotlinx-coroutines-core is not in the classpath
Surely this will cause a failure if Kotlin isn't on the classpath - i.e. if the plugin isn't using it? |
No, there is no failure. The JVM does throw exceptions that the classes can't be found, but those are caught and silently ignored - meaning no Kotlin is required at runtime |
Lil late but any updates or future thoughts on this? |
Handles exceptions thrown by Kotlin
suspend
functions.