Uses of Interface
io.helidon.common.context.Context
-
Packages that use Context Package Description io.helidon.common.context Support for 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.grpc.core Core classes used by both the reactive gRPC server API and gRPC client API.io.helidon.grpc.server Reactive gRPC server API.io.helidon.microprofile.server Microprofile 1.0 server implementation.io.helidon.tracing.config Configuration for traced components, spans and logs.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 Context
Context.Builder. build()
static Context
Context. create()
Creates a new empty instance.static Context
Context. 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 Context
Context. create(Context parent)
Creates a new empty instance backed by its parent read-throughContext
.Context.Builder
Context.Builder. parent(Context parent)
Parent of the new context.static void
Contexts. runInContext(Context context, Runnable runnable)
Run the runnable in the provided context.static <T> T
Contexts. runInContext(Context context, Callable<T> callable)
Run the callable in the provided context.static <T> T
Contexts. 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 interface
ContextualRegistry
Deprecated.This class will be replaced withContext
in future Helidon versionsMethods in io.helidon.common.http with parameters of type Context Modifier and Type Method Description static ContextualRegistry
ContextualRegistry. create(Context parent)
Deprecated.ContextualRegistry.Builder
ContextualRegistry.Builder. parent(Context parent)
Parent of the new context. -
Uses of Context in io.helidon.grpc.core
Fields in io.helidon.grpc.core with type parameters of type Context Modifier and Type Field Description static io.grpc.Context.Key<Context>
ContextKeys. HELIDON_CONTEXT
The gRPC context key to use to obtain the HelidonContext
from the gRPCContext
. -
Uses of Context in io.helidon.grpc.server
Methods in io.helidon.grpc.server that return Context Modifier and Type Method Description Context
GrpcServer. context()
Gets aGrpcServer
context.Context
GrpcServerBasicConfig. context()
Context
GrpcServerConfiguration.Builder. context()
Context
GrpcServerConfiguration. context()
The top levelContext
to be used by the server.Context
GrpcServerImpl. context()
Methods in io.helidon.grpc.server with parameters of type Context Modifier and Type Method Description GrpcServerConfiguration.Builder
GrpcServerConfiguration.Builder. context(Context context)
Configure the application scoped context to be used as a parent for webserver request contexts. -
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.Builder
Server.Builder. context(Context parentContext)
Configure the parent context to be used by this server. -
Uses of Context in io.helidon.tracing.config
Methods in io.helidon.tracing.config with parameters of type Context Modifier and Type Method Description static SpanTracingConfig
TracingConfigUtil. spanConfig(String component, String spanName, Context context)
Get the configuration of a single span from the providedContext
. -
Uses of Context in io.helidon.webserver
Methods in io.helidon.webserver that return Context Modifier and Type Method Description Context
ServerConfiguration. context()
The top levelContext
to be used by this webserver.Methods in io.helidon.webserver with parameters of type Context Modifier and Type Method Description ServerConfiguration.Builder
ServerConfiguration.Builder. context(Context context)
Configure the application scoped context to be used as a parent for webserver request contexts.
-