java.lang.Object
io.helidon.grpc.server.GrpcServerBasicConfig
- All Implemented Interfaces:
GrpcServerConfiguration
Configuration class for the
GrpcServer implementations.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.helidon.grpc.server.GrpcServerConfiguration
GrpcServerConfiguration.Builder -
Field Summary
Fields inherited from interface io.helidon.grpc.server.GrpcServerConfiguration
DEFAULT_NAME, DEFAULT_PORT, DEFAULT_WORKER_COUNT -
Method Summary
Modifier and TypeMethodDescriptioncontext()The top levelContextto be used by the server.name()Get the server name.intport()Get the server port.Returns a SslConfiguration to use with the server socket.tracer()Returns an opentracing.io tracer.Returns tracing configuration.booleanDetermine whether use native transport if possible.intworkers()Returns a count of threads in s pool used to process gRPC requests.
-
Method Details
-
name
Get the server name.- Specified by:
namein interfaceGrpcServerConfiguration- Returns:
- the server name
-
port
public int port()Get the server port.- Specified by:
portin interfaceGrpcServerConfiguration- Returns:
- the server port
-
context
Description copied from interface:GrpcServerConfigurationThe top levelContextto be used by the server.- Specified by:
contextin interfaceGrpcServerConfiguration- Returns:
- a context instance with registered application scoped instances
-
useNativeTransport
public boolean useNativeTransport()Determine whether use native transport if possible.If native transport support is enabled, gRPC server will use epoll on Linux, or kqueue on OS X. Otherwise, the standard NIO transport will be used.
- Specified by:
useNativeTransportin interfaceGrpcServerConfiguration- Returns:
trueif native transport should be used
-
tracer
Description copied from interface:GrpcServerConfigurationReturns an opentracing.io tracer. Default isGlobalTracer.- Specified by:
tracerin interfaceGrpcServerConfiguration- Returns:
- a tracer to use - never
null(defaulting toGlobalTracer
-
tracingConfig
Description copied from interface:GrpcServerConfigurationReturns tracing configuration.- Specified by:
tracingConfigin interfaceGrpcServerConfiguration- Returns:
- a tracing configuration.
-
workers
public int workers()Description copied from interface:GrpcServerConfigurationReturns a count of threads in s pool used to process gRPC requests.Default value is
CPU_COUNT * 2.- Specified by:
workersin interfaceGrpcServerConfiguration- Returns:
- a workers count
-
tlsConfig
Description copied from interface:GrpcServerConfigurationReturns a SslConfiguration to use with the server socket. If notnullthen the server enforces an SSL communication.- Specified by:
tlsConfigin interfaceGrpcServerConfiguration- Returns:
- a TLS configuration to use
-