context-propagation
context-propagation copied to clipboard
Propagate snapshots of ThreadLocal values to another thread
It appears current implementations of `nl.talsmasoftware.context.ContextManager.initializeNewContext(T)`, most notably the SLF4J MDC one, overwrite the existing context. However, I think there might be cases where it is desirable to only append...
## Is your feature request related to a problem? Please describe. There is a github action for uploading to coveralls.Unfortunately it doesn't understand jacoco XML output. For the moment we...
## Expected Behavior Aggregated Javadoc generated from the parent maven module. ## Actual Behavior - Breaking Javadoc build (see #157). - Manually having to maintain package references in https://github.com/talsma-ict/context-propagation/tree/develop/.mvn/javadoc which...
## Is your feature request related to a problem? Please describe. Currently this project uses `java.util.logging`, this has the following disadvantages: - It is difficult to bridge to any other...
## Expected Behavior As per documentation of `Clearable`, it should clear the context of the current thread: > Clearing the context removes not only an active context from the current...
## Is your feature request related to a problem? Please describe. No problem, maybe a more standard solution available. ## Describe the solution you'd like If possible replace my context-propagation...
## Is your feature request related to a problem? Please describe. Java 8 allows for cleaner code because: - lambda's - `Optional` - Functional interfaces; i.e. lose our `SnapshotSupplier` in...
## Is your feature request related to a problem? Please describe. Grpc `Context` offers a fluent api (starting from the static Context class). Let's see if it could be fully...
## 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...