You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Transaction context is a container for transaction-specific evaluation context (e.g. user id, user agent, IP).
278
278
Transaction context can be set where specific data is available (e.g. an auth service or request handler) and by using the transaction context propagator it will automatically be applied to all flag evaluations within a transaction (e.g. a request or thread).
279
279
By default, the `NoOpTransactionContextPropagator` is used, which doesn't store anything.
280
-
To register a `ThreadLocal` context propagator, you can use the `setTransactionContextPropagator` method as shown below:
280
+
To register a `ThreadLocal` context propagator, you can use the `setTransactionContextPropagator` method as shown below.
281
281
```java
282
282
// registering the ThreadLocalTransactionContextPropagator
0 commit comments