Uses of Interface
io.opentelemetry.context.ContextStorage
-
Packages that use ContextStorage Package Description io.opentelemetry.context A context propagation mechanism which can carry scoped-values across API boundaries and between threads. -
-
Uses of ContextStorage in io.opentelemetry.context
Classes in io.opentelemetry.context that implement ContextStorage Modifier and Type Class Description (package private) classStrictContextStorageAContextStoragewhich keeps track of opened and closedScopes, reporting caller information if aScopeis closed incorrectly or not at all.(package private) classThreadLocalContextStorageFields in io.opentelemetry.context declared as ContextStorage Modifier and Type Field Description private ContextStorageStrictContextStorage. delegateprivate static ContextStorageLazyStorage. storageFields in io.opentelemetry.context with type parameters of type ContextStorage Modifier and Type Field Description private static java.util.List<java.util.function.Function<? super ContextStorage,? extends ContextStorage>>ContextStorageWrappers. wrappersprivate static java.util.List<java.util.function.Function<? super ContextStorage,? extends ContextStorage>>ContextStorageWrappers. wrappersMethods in io.opentelemetry.context that return ContextStorage Modifier and Type Method Description (package private) static ContextStorageLazyStorage. createStorage(java.util.concurrent.atomic.AtomicReference<java.lang.Throwable> deferredStorageFailure)static ContextStorageContextStorage. defaultStorage()Returns the defaultContextStoragewhich storesContextusing a threadlocal.static ContextStorageContextStorage. get()Returns theContextStoragebeing used by this application.ContextStorageContextStorageProvider. get()Returns theContextStorageto use to storeContext.(package private) static ContextStorageLazyStorage. get()Methods in io.opentelemetry.context that return types with arguments of type ContextStorage Modifier and Type Method Description (package private) static java.util.List<java.util.function.Function<? super ContextStorage,? extends ContextStorage>>ContextStorageWrappers. getWrappers()(package private) static java.util.List<java.util.function.Function<? super ContextStorage,? extends ContextStorage>>ContextStorageWrappers. getWrappers()Methods in io.opentelemetry.context with parameters of type ContextStorage Modifier and Type Method Description (package private) static StrictContextStorageStrictContextStorage. create(ContextStorage delegate)Returns a newStrictContextStoragewhich delegates to the providedContextStorage, wrapping created scopes to track their usage.Method parameters in io.opentelemetry.context with type arguments of type ContextStorage Modifier and Type Method Description static voidContextStorage. addWrapper(java.util.function.Function<? super ContextStorage,? extends ContextStorage> wrapper)Adds thewrapper, which will be executed with theContextStorageis first used, i.e., by callingContext.makeCurrent().static voidContextStorage. addWrapper(java.util.function.Function<? super ContextStorage,? extends ContextStorage> wrapper)Adds thewrapper, which will be executed with theContextStorageis first used, i.e., by callingContext.makeCurrent().(package private) static voidContextStorageWrappers. addWrapper(java.util.function.Function<? super ContextStorage,? extends ContextStorage> wrapper)(package private) static voidContextStorageWrappers. addWrapper(java.util.function.Function<? super ContextStorage,? extends ContextStorage> wrapper)Constructors in io.opentelemetry.context with parameters of type ContextStorage Constructor Description StrictContextStorage(ContextStorage delegate)
-