@FunctionalInterface
public static interface GrpcServerBuilder.HttpInitializer
HttpServerBuilder used for the transport layer.| Modifier and Type | Method and Description |
|---|---|
default GrpcServerBuilder.HttpInitializer |
append(GrpcServerBuilder.HttpInitializer toAppend)
Appends the passed
GrpcServerBuilder.HttpInitializer to this GrpcServerBuilder.HttpInitializer such that this instance is
applied first and then the argument's GrpcServerBuilder.HttpInitializer. |
void |
initialize(HttpServerBuilder builder)
Configures the underlying
HttpServerBuilder. |
void initialize(HttpServerBuilder builder)
HttpServerBuilder.builder - The builder to customize the HTTP layer.default GrpcServerBuilder.HttpInitializer append(GrpcServerBuilder.HttpInitializer toAppend)
GrpcServerBuilder.HttpInitializer to this GrpcServerBuilder.HttpInitializer such that this instance is
applied first and then the argument's GrpcServerBuilder.HttpInitializer.toAppend - GrpcServerBuilder.HttpInitializer to append.GrpcServerBuilder.HttpInitializer after the append operation.