Uses of Interface
nl.talsmasoftware.context.Context
-
Packages that use Context Package Description nl.talsmasoftware.context Main package defining the corecontext-propagationconcepts in this librarynl.talsmasoftware.context.locale Maintain a current Locale context.nl.talsmasoftware.context.mdc Propagate theSlf4J MDCcontent from one thread to another.nl.talsmasoftware.context.opentracing nl.talsmasoftware.context.servletrequest nl.talsmasoftware.context.springsecurity nl.talsmasoftware.context.threadlocal Package forThreadLocalspecific classes. -
-
Uses of Context in nl.talsmasoftware.context
Methods in nl.talsmasoftware.context that return Context Modifier and Type Method Description Context<T>ContextManager. getActiveContext()The currently active context, ornullif no context is active.Context<T>ContextManager. initializeNewContext(T value)Initialize a new context containing the specifiedvalue.Context<Void>ContextSnapshot. reactivate()This method activates all contained values by the snapshot in their respectiveContextimplementations. -
Uses of Context in nl.talsmasoftware.context.locale
Methods in nl.talsmasoftware.context.locale that return Context Modifier and Type Method Description Context<Locale>LocaleContextManager. getActiveContext()Context<Locale>LocaleContextManager. initializeNewContext(Locale value) -
Uses of Context in nl.talsmasoftware.context.mdc
Methods in nl.talsmasoftware.context.mdc that return Context Modifier and Type Method Description Context<Map<String,String>>MdcManager. getActiveContext()Returns the active MDC values from the current thread.Context<Map<String,String>>MdcManager. initializeNewContext(Map<String,String> mdcValues)Initializes a new MDC context populated by the specified values. -
Uses of Context in nl.talsmasoftware.context.opentracing
Methods in nl.talsmasoftware.context.opentracing that return Context Modifier and Type Method Description Context<Span>ContextScopeManager. getActiveContext()Context<Span>SpanManager. getActiveContext()Return theactive spanas aContext.Context<Span>ContextScopeManager. initializeNewContext(Span value)Initializes a new context for the given Span.Context<Span>SpanManager. initializeNewContext(Span span) -
Uses of Context in nl.talsmasoftware.context.servletrequest
Methods in nl.talsmasoftware.context.servletrequest that return Context Modifier and Type Method Description Context<ServletRequest>ServletRequestContextManager. getActiveContext()Context<ServletRequest>ServletRequestContextManager. initializeNewContext(ServletRequest value) -
Uses of Context in nl.talsmasoftware.context.springsecurity
Methods in nl.talsmasoftware.context.springsecurity that return Context Modifier and Type Method Description Context<Authentication>SpringSecurityContextManager. getActiveContext()Context<Authentication>SpringSecurityContextManager. initializeNewContext(Authentication value)Creates a new Spring SecurityContext and sets the value in it. -
Uses of Context in nl.talsmasoftware.context.threadlocal
Classes in nl.talsmasoftware.context.threadlocal that implement Context Modifier and Type Class Description classAbstractThreadLocalContext<T>Abstract base class maintaining a shared, staticThreadLocalinstance for each concrete subclass.Fields in nl.talsmasoftware.context.threadlocal declared as Context Modifier and Type Field Description protected Context<T>AbstractThreadLocalContext. parentContextThe parent context that was active at the time this context was created (if any) ornullin case there was no active context when this context was created.
-