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 levelContext
to be used by the server.int
Returns the maximum allowed number of rapid resets (stream RST sent by client before any data have been sent by server).name()
Get the server name.int
port()
Get the server port.Returns the period for counting rapid resets (stream RST sent by client before any data have been sent by server).Returns a SslConfiguration to use with the server socket.tracer()
Returns aTracer
.Returns tracing configuration.boolean
Determine whether use native transport if possible.int
workers()
Returns a count of threads in s pool used to process gRPC requests.
-
Method Details
-
name
Get the server name.- Specified by:
name
in interfaceGrpcServerConfiguration
- Returns:
- the server name
-
port
public int port()Get the server port.- Specified by:
port
in interfaceGrpcServerConfiguration
- Returns:
- the server port
-
context
Description copied from interface:GrpcServerConfiguration
The top levelContext
to be used by the server.- Specified by:
context
in 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:
useNativeTransport
in interfaceGrpcServerConfiguration
- Returns:
true
if native transport should be used
-
tracer
Description copied from interface:GrpcServerConfiguration
Returns aTracer
. Default isTracer.global()
.- Specified by:
tracer
in interfaceGrpcServerConfiguration
- Returns:
- a tracer to use - never
null
-
tracingConfig
Description copied from interface:GrpcServerConfiguration
Returns tracing configuration.- Specified by:
tracingConfig
in interfaceGrpcServerConfiguration
- Returns:
- a tracing configuration.
-
workers
public int workers()Description copied from interface:GrpcServerConfiguration
Returns a count of threads in s pool used to process gRPC requests.Default value is
CPU_COUNT * 2
.- Specified by:
workers
in interfaceGrpcServerConfiguration
- Returns:
- a workers count
-
tlsConfig
Description copied from interface:GrpcServerConfiguration
Returns a SslConfiguration to use with the server socket. If notnull
then the server enforces an SSL communication.- Specified by:
tlsConfig
in interfaceGrpcServerConfiguration
- Returns:
- a TLS configuration to use
-
rapidResetCheckPeriod
Description copied from interface:GrpcServerConfiguration
Returns the period for counting rapid resets (stream RST sent by client before any data have been sent by server).- Specified by:
rapidResetCheckPeriod
in interfaceGrpcServerConfiguration
- Returns:
- the period for counting rapid resets
-
maxRapidResets
public int maxRapidResets()Description copied from interface:GrpcServerConfiguration
Returns the maximum allowed number of rapid resets (stream RST sent by client before any data have been sent by server). When reached withinGrpcServerConfiguration.rapidResetCheckPeriod()
, GOAWAY is sent to client and connection is closed.- Specified by:
maxRapidResets
in interfaceGrpcServerConfiguration
- Returns:
- the maximum allowed number of rapid resets
-