Package org.eclipse.microprofile.context.spi
package org.eclipse.microprofile.context.spi
-
ClassDescription
ContextManager
instances can be used to createContextManager.newManagedExecutorBuilder()
orContextManager.newThreadContextBuilder()
.Use this class to configure instances ofContextManager
.ContextManagerExtension
instances receive notification upon creation of eachContextManager
.A provider implementation supplied by the container, which creates and caches instances ofContextManager
per class loader, which in turn create new instances ofManagedExecutor.Builder
andThreadContext.Builder
.This class gives the container that registered aContextManagerProvider
exclusive control over unregistering it.Represents context that is applied to a particular thread, along with any state that is associated with it or that is necessary for restoring the previous context afterward.Third party providers of thread context implement this interface to enable the provided type of context to participate in thread context capture and propagation when theManagedExecutor
andThreadContext
are used to create and contextualize dependent actions and tasks.An immutable snapshot of a particular type of thread context.