Package io.quarkus.grpc.runtime.config
Class GrpcServerBuildTimeConfig
- java.lang.Object
-
- io.quarkus.grpc.runtime.config.GrpcServerBuildTimeConfig
-
@ConfigRoot(phase=BUILD_TIME, name="grpc.server") public class GrpcServerBuildTimeConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description booleangrpcHealthEnabledWhether the gRPC health check is exposed.booleanmpHealthEnabledWhether a health check on gRPC status is published in case the smallrye-health extension is present.
-
Constructor Summary
Constructors Constructor Description GrpcServerBuildTimeConfig()
-
-
-
Field Detail
-
mpHealthEnabled
@ConfigItem(name="health.enabled", defaultValue="true") public boolean mpHealthEnabled
Whether a health check on gRPC status is published in case the smallrye-health extension is present.
-
grpcHealthEnabled
@ConfigItem(name="grpc-health.enabled", defaultValue="true") public boolean grpcHealthEnabled
Whether the gRPC health check is exposed.
-
-