Uses of Interface
io.github.resilience4j.core.ContextPropagator
Packages that use ContextPropagator
-
Uses of ContextPropagator in io.github.resilience4j.core
Classes in io.github.resilience4j.core that implement ContextPropagatorModifier and TypeClassDescriptionstatic classA convenient implementation of emptyContextPropagatorFields in io.github.resilience4j.core with type parameters of type ContextPropagatorModifier and TypeFieldDescriptionprivate List<ContextPropagator> ContextAwareScheduledThreadPoolExecutor.Builder.contextPropagatorsprivate final List<ContextPropagator> ContextAwareScheduledThreadPoolExecutor.contextPropagatorsMethods in io.github.resilience4j.core that return ContextPropagatorModifier and TypeMethodDescriptionstatic <T> ContextPropagator<T> ContextPropagator.empty()An empty context propagator.Methods in io.github.resilience4j.core that return types with arguments of type ContextPropagatorModifier and TypeMethodDescriptionContextAwareScheduledThreadPoolExecutor.getContextPropagators()Methods in io.github.resilience4j.core with parameters of type ContextPropagatorModifier and TypeMethodDescriptionContextAwareScheduledThreadPoolExecutor.Builder.contextPropagators(ContextPropagator... contextPropagators) static <T> Callable<T> ContextPropagator.decorateCallable(ContextPropagator propagator, Callable<T> callable) Method decorates callable to copy variables across thread boundary.static <T> RunnableContextPropagator.decorateRunnable(ContextPropagator propagator, Runnable runnable) Method decorates runnable to copy variables across thread boundary.static <T> Supplier<T> ContextPropagator.decorateSupplier(ContextPropagator propagator, Supplier<T> supplier) Method decorates supplier to copy variables across thread boundary.Method parameters in io.github.resilience4j.core with type arguments of type ContextPropagatorModifier and TypeMethodDescriptionstatic <T> Callable<T> ContextPropagator.decorateCallable(List<? extends ContextPropagator> propagators, Callable<T> callable) Method decorates callable to copy variables across thread boundary.static <T> RunnableContextPropagator.decorateRunnable(List<? extends ContextPropagator> propagators, Runnable runnable) Method decorates runnable to copy variables across thread boundary.static <T> Supplier<T> ContextPropagator.decorateSupplier(List<? extends ContextPropagator> propagators, Supplier<T> supplier) Method decorates supplier to copy variables across thread boundary.Constructor parameters in io.github.resilience4j.core with type arguments of type ContextPropagatorModifierConstructorDescriptionprivateContextAwareScheduledThreadPoolExecutor(int corePoolSize, List<ContextPropagator> contextPropagators)