Uses of Interface
nl.talsmasoftware.context.ContextManager
-
Packages that use ContextManager Package Description nl.talsmasoftware.context Main package defining the corecontext-propagationconcepts in this librarynl.talsmasoftware.context.clearable TheClearableinterface and aClearableContextManagerin particular.nl.talsmasoftware.context.locale Maintain a current Locale context.nl.talsmasoftware.context.mdc Propagate theSlf4J MDCcontent from one thread to another.nl.talsmasoftware.context.observer Observe context changesnl.talsmasoftware.context.opentracing nl.talsmasoftware.context.servletrequest nl.talsmasoftware.context.springsecurity nl.talsmasoftware.context.threadlocal Package forThreadLocalspecific classes. -
-
Uses of ContextManager in nl.talsmasoftware.context
Method parameters in nl.talsmasoftware.context with type arguments of type ContextManager Modifier and Type Method Description static <T> voidContextManagers. onActivate(Class<? extends ContextManager<? super T>> contextManager, T activatedContextValue, T previousContextValue)Notifies all context observers for the specifiedcontextManagerabout the activated context value.static <T> voidContextManagers. onDeactivate(Class<? extends ContextManager<? super T>> contextManager, T deactivatedContextValue, T restoredContextValue)Notifies all context observers for the specifiedcontextManagerabout the deactivated context value. -
Uses of ContextManager in nl.talsmasoftware.context.clearable
Subinterfaces of ContextManager in nl.talsmasoftware.context.clearable Modifier and Type Interface Description interfaceClearableContextManager<T>Convenience interface to mark a ClearableContextManager. -
Uses of ContextManager in nl.talsmasoftware.context.locale
Classes in nl.talsmasoftware.context.locale that implement ContextManager Modifier and Type Class Description classLocaleContextManagerManager for aLocalebound to the current thread. -
Uses of ContextManager in nl.talsmasoftware.context.mdc
Classes in nl.talsmasoftware.context.mdc that implement ContextManager Modifier and Type Class Description classMdcManagerManager to propagate theMDCcontent from one thread to another. -
Uses of ContextManager in nl.talsmasoftware.context.observer
Methods in nl.talsmasoftware.context.observer that return types with arguments of type ContextManager Modifier and Type Method Description Class<? extends ContextManager<T>>ContextObserver. getObservedContextManager()The observed context manager(s).Method parameters in nl.talsmasoftware.context.observer with type arguments of type ContextManager Modifier and Type Method Description static <T> voidContextObservers. onActivate(Class<? extends ContextManager<? super T>> contextManager, T activatedContextValue, T previousContextValue)Deprecated.This method was moved to theContextManagersutility class.static <T> voidContextObservers. onDeactivate(Class<? extends ContextManager<? super T>> contextManager, T deactivatedContextValue, T restoredContextValue)Deprecated.This method was moved to theContextManagersutility class. -
Uses of ContextManager in nl.talsmasoftware.context.opentracing
Classes in nl.talsmasoftware.context.opentracing that implement ContextManager Modifier and Type Class Description classContextScopeManagerOur own implementation of the opentracing ScopeManager.classOpentracingSpanManagerDeprecated.Renamed toSpanManagerclassSpanManagerManager for OpenTracing Span. -
Uses of ContextManager in nl.talsmasoftware.context.servletrequest
Classes in nl.talsmasoftware.context.servletrequest that implement ContextManager Modifier and Type Class Description classServletRequestContextManagerManager to propagate a currentServletRequestwith. -
Uses of ContextManager in nl.talsmasoftware.context.springsecurity
Classes in nl.talsmasoftware.context.springsecurity that implement ContextManager Modifier and Type Class Description classSpringSecurityContextManagerA context manager that propagates spring-securityAuthenticationobjects into background threads using theContextAwareExecutorService. -
Uses of ContextManager in nl.talsmasoftware.context.threadlocal
Constructor parameters in nl.talsmasoftware.context.threadlocal with type arguments of type ContextManager Constructor Description AbstractThreadLocalContext(Class<? extends ContextManager<? super T>> contextManagerType, T newValue)Instantiates a new context with the specified value.
-