Uses of Interface
io.opentelemetry.context.Scope
-
Packages that use Scope Package Description io.opentelemetry.context A context propagation mechanism which can carry scoped-values across API boundaries and between threads. -
-
Uses of Scope in io.opentelemetry.context
Classes in io.opentelemetry.context that implement Scope Modifier and Type Class Description (package private) class
StrictContextStorage.StrictScope
(package private) static class
ThreadLocalContextStorage.NoopScope
private class
ThreadLocalContextStorage.ScopeImpl
Fields in io.opentelemetry.context declared as Scope Modifier and Type Field Description (package private) Scope
StrictContextStorage.StrictScope. delegate
Fields in io.opentelemetry.context with type parameters of type Scope Modifier and Type Field Description private java.util.concurrent.ConcurrentHashMap<AbstractWeakConcurrentMap.WeakKey<Scope>,StrictContextStorage.CallerStackTrace>
StrictContextStorage.PendingScopes. map
Methods in io.opentelemetry.context that return Scope Modifier and Type Method Description Scope
ContextStorage. attach(Context toAttach)
Scope
StrictContextStorage. attach(Context context)
Scope
ThreadLocalContextStorage. attach(Context toAttach)
default Scope
Context. makeCurrent()
Makes this the current context and returns aScope
which corresponds to the scope of execution this context is current for.default Scope
ImplicitContextKeyed. makeCurrent()
Adds thisImplicitContextKeyed
value to thecurrent context
and makes the newContext
the current context.static Scope
Scope. noop()
Returns aScope
that does nothing.Constructors in io.opentelemetry.context with parameters of type Scope Constructor Description StrictScope(Scope delegate, StrictContextStorage.CallerStackTrace caller)
Constructor parameters in io.opentelemetry.context with type arguments of type Scope Constructor Description PendingScopes(java.util.concurrent.ConcurrentHashMap<AbstractWeakConcurrentMap.WeakKey<Scope>,StrictContextStorage.CallerStackTrace> map)
-