Package io.quarkus.arc.deployment
Interface ArcContextPropagationConfig
public interface ArcContextPropagationConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()If set to true and the SmallRye Context Propagation extension is present then the CDI contexts will be propagated by means of the MicroProfile Context Propagation API.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()If set to true and the SmallRye Context Propagation extension is present then the CDI contexts will be propagated by means of the MicroProfile Context Propagation API. Specifically, aThreadContextProviderimplementation is registered. On the other hand, if set to false then the MicroProfile Context Propagation API will never be used to propagate the CDI contexts. Note that the CDI contexts may be propagated in a different way though. For example with the Vertx duplicated context.
-