Uses of Interface
io.helidon.common.reactive.RetrySchema
-
-
Uses of RetrySchema in io.helidon.common.reactive
Methods in io.helidon.common.reactive that return RetrySchema Modifier and Type Method Description static RetrySchemaRetrySchema. constant(long delay)Creates the retry schema with a constant result.static RetrySchemaRetrySchema. geometric(long firstDelay, double ratio, long maxDelay)Creates the retry schema as a bounded geometric series.static RetrySchemaRetrySchema. linear(long firstDelay, long delayIncrement, long maxDelay)Creates the retry schema with a linear delay increment.Methods in io.helidon.common.reactive with parameters of type RetrySchema Modifier and Type Method Description IoMulti.MultiFromByteChannelBuilderIoMulti.MultiFromByteChannelBuilder. retrySchema(RetrySchema retrySchema)Retry schema to use when reading from the channel.
-