We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Kotlin coroutines are stored in memory and have their own contexts and can be scheduled to resume on different threads.
ThreadLocal contexts won't work with coroutines out of the box.
ThreadLocal
Support coroutines similar to the solution that was created for Slf4J MDC context: kotlinx-coroutines-slf4j
kotlinx-coroutines-slf4j
The text was updated successfully, but these errors were encountered:
See Kotlin/kotlinx.coroutines#119
Sorry, something went wrong.
As I don't use Kotlin in production at this moment, I feel I would not be able to provide reasonable usecases for the tests to write.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Kotlin coroutines are stored in memory and have their own contexts and can be scheduled to resume on different threads.
ThreadLocal
contexts won't work with coroutines out of the box.Describe the solution you'd like
Support coroutines similar to the solution that was created for Slf4J MDC context:
kotlinx-coroutines-slf4j
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: