java.lang.Object
io.helidon.common.context.Contexts
Support for handling
Context
across thread boundaries.-
Method Summary
Modifier and TypeMethodDescriptioncontext()
Get context registry associated with current thread.static Context
Global context is always present and statically shared in this JVM.static void
runInContext
(Context context, Runnable runnable) Run the runnable in the provided context.static <T> T
runInContext
(Context context, Callable<T> callable) Run the callable in the provided context.static <T> T
runInContextWithThrow
(Context context, Callable<T> callable) Run the callable in the provided context throwing any exception from its execution.static ExecutorService
wrap
(ExecutorService toWrap) Wrap an executor service to correctly propagate context to its threads.static ScheduledExecutorService
wrap
(ScheduledExecutorService toWrap) Wrap a scheduled executor service to correctly propagate context to its threads.
-
Method Details
-
context
Get context registry associated with current thread.- Returns:
- context that is associated with current thread or empty if none is
-
globalContext
Global context is always present and statically shared in this JVM. This is similar to Singleton scope when using an injection engine. Global context is also used as a parent for newly created contexts, unless you specify a parent usingContext.Builder.parent(Context)
. Registering any instance in this context will make it available to any component in this JVM.- Returns:
- global context instance, never null
-
wrap
Wrap an executor service to correctly propagate context to its threads.- Parameters:
toWrap
- executor service- Returns:
- a new executor service wrapping the provided one
-
wrap
Wrap a scheduled executor service to correctly propagate context to its threads. Note that all scheduled methods are going to run in context of the thread scheduling the tasks.- Parameters:
toWrap
- executor service- Returns:
- a new executor service wrapping the provided one
-
runInContext
Run the runnable in the provided context. The runnable can usecontext()
to retrieve the context.- Parameters:
context
- context to run inrunnable
- runnable to execute in context
-
runInContext
Run the callable in the provided context. The callable can usecontext()
to retrieve the context.- Type Parameters:
T
- return type of the callable- Parameters:
context
- context to run incallable
- callable to execute in context- Returns:
- the result of the callable
- Throws:
RuntimeException
- in case theCallable.call()
threw a runtime exception
-
runInContextWithThrow
Run the callable in the provided context throwing any exception from its execution. The callable can usecontext()
to retrieve the context.- Type Parameters:
T
- return type of the callable- Parameters:
context
- context to run incallable
- callable to execute in context- Returns:
- the result of the callable
- Throws:
Exception
- If thrown inCallable.call()
-