Uses of Interface
io.helidon.common.context.Context
-
Packages that use Context Package Description io.helidon.common.context Support fo context propagation across executor boundaries.io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story.io.helidon.microprofile.server Microprofile 1.0 server implementation.io.helidon.webserver Reactive web server API. -
-
Uses of Context in io.helidon.common.context
Methods in io.helidon.common.context that return Context Modifier and Type Method Description ContextContext.Builder. build()static ContextContext. create()Creates a new empty instance.static ContextContext. create(Context parent)Creates a new empty instance backed by its parent read-throughContext.Methods in io.helidon.common.context that return types with arguments of type Context Modifier and Type Method Description static Optional<Context>Contexts. context()Get context registry associated with current thread.Methods in io.helidon.common.context with parameters of type Context Modifier and Type Method Description static ContextContext. create(Context parent)Creates a new empty instance backed by its parent read-throughContext.Context.BuilderContext.Builder. parent(Context parent)Parent of the new context.static voidContexts. runInContext(Context context, Runnable runnable)Run the runnable in the provided context.static <T> TContexts. runInContext(Context context, Callable<T> callable)Run the callable in the provided context.static <T> TContexts. runInContextWithThrow(Context context, Callable<T> callable)Run the callable in the provided context throwing any exception from its execution. -
Uses of Context in io.helidon.common.http
Subinterfaces of Context in io.helidon.common.http Modifier and Type Interface Description interfaceContextualRegistryDeprecated.This class will be replaced withContextin future Helidon versionsMethods in io.helidon.common.http with parameters of type Context Modifier and Type Method Description static ContextualRegistryContextualRegistry. create(Context parent)Deprecated.ContextualRegistry.BuilderContextualRegistry.Builder. parent(Context parent)Parent of the new context. -
Uses of Context in io.helidon.microprofile.server
Methods in io.helidon.microprofile.server with parameters of type Context Modifier and Type Method Description Server.BuilderServer.Builder. context(Context parentContext)Configure the parent context to be used by this server. -
Uses of Context in io.helidon.webserver
Methods in io.helidon.webserver that return Context Modifier and Type Method Description ContextServerConfiguration. context()The top levelContextto be used by this webserver.Methods in io.helidon.webserver with parameters of type Context Modifier and Type Method Description ServerConfiguration.BuilderServerConfiguration.Builder. context(Context context)Configure the application scoped context to be used as a parent for webserver request contexts.
-