Class GrpcServerConfiguration.Builder

java.lang.Object
io.helidon.grpc.server.GrpcServerConfiguration.Builder
All Implemented Interfaces:
Builder<GrpcServerConfiguration.Builder,GrpcServerConfiguration>, Supplier<GrpcServerConfiguration>
Enclosing interface:
GrpcServerConfiguration

public static final class GrpcServerConfiguration.Builder extends Object implements Builder<GrpcServerConfiguration.Builder,GrpcServerConfiguration>
  • Method Details

    • config

      public GrpcServerConfiguration.Builder config(Config config)
      Update the builder from configuration.
      Parameters:
      config - configuration instance
      Returns:
      updated builder
    • name

      Set the name of the gRPC server.

      Configuration key: name

      Parameters:
      name - the name of the gRPC server
      Returns:
      an updated builder
    • port

      public GrpcServerConfiguration.Builder port(int port)
      Sets server port. If port is 0 or less then any available ephemeral port will be used.

      Configuration key: port

      Parameters:
      port - the server port
      Returns:
      an updated builder
    • context

      public GrpcServerConfiguration.Builder context(Context context)
      Configure the application scoped context to be used as a parent for webserver request contexts.
      Parameters:
      context - top level context
      Returns:
      an updated builder
    • tracer

      public GrpcServerConfiguration.Builder tracer(Tracer tracer)
      Sets an opentracing.io tracer. (Default is GlobalTracer.)
      Parameters:
      tracer - a tracer to set
      Returns:
      an updated builder
    • tracer

      public GrpcServerConfiguration.Builder tracer(Supplier<? extends Tracer> tracerBuilder)
      Sets an opentracing.io tracer. (Default is GlobalTracer.)
      Parameters:
      tracerBuilder - a tracer builder to set; will be built as a first step of this method execution
      Returns:
      updated builder
    • tracingConfig

      public GrpcServerConfiguration.Builder tracingConfig(GrpcTracingConfig tracingConfig)
      Set trace configuration.
      Parameters:
      tracingConfig - the tracing configuration to set
      Returns:
      an updated builder
    • workersCount

      public GrpcServerConfiguration.Builder workersCount(int workers)
      Sets a count of threads in pool used to process HTTP requests. Default value is CPU_COUNT * 2.

      Configuration key: workers

      Parameters:
      workers - a workers count
      Returns:
      an updated builder
    • tlsConfig

      public GrpcServerConfiguration.Builder tlsConfig(GrpcTlsDescriptor tlsConfig)
      Configures TLS configuration to use with the server socket. If not null then the server enforces an TLS communication.
      Parameters:
      tlsConfig - a TLS configuration to use
      Returns:
      this builder
    • context

      public Context context()
      Current Helidon Context.
      Returns:
      current context
    • build

      public GrpcServerConfiguration build()
      Description copied from interface: Builder
      Build the instance from this builder.
      Specified by:
      build in interface Builder<GrpcServerConfiguration.Builder,GrpcServerConfiguration>
      Returns:
      instance of the built type