Package io.quarkus.grpc.runtime.config
Interface GrpcClientConfiguration.StorkConfig
- Enclosing interface:
GrpcClientConfiguration
public static interface GrpcClientConfiguration.StorkConfig
Stork config for new Vert.x gRPC
-
Method Summary
Modifier and TypeMethodDescriptionlongdeadline()Deadline in milliseconds of delayed gRPC calllongdelay()Initial delay in seconds on refresh checklongperiod()Refresh period in secondsintretries()Number of retries on a gRPC ClientCallintthreads()Number of threads on a delayed gRPC ClientCall
-
Method Details
-
threads
@WithDefault("10") int threads()Number of threads on a delayed gRPC ClientCall -
deadline
@WithDefault("5000") long deadline()Deadline in milliseconds of delayed gRPC call -
retries
@WithDefault("3") int retries()Number of retries on a gRPC ClientCall -
delay
@WithDefault("60") long delay()Initial delay in seconds on refresh check -
period
@WithDefault("120") long period()Refresh period in seconds
-