Uses of Interface
io.helidon.common.reactive.RetrySchema
-
Packages that use RetrySchema Package Description io.helidon.common.reactive Common reactive library for Helidon projects.io.helidon.media.common Common classes for processing content with a specificMediaType. -
-
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. -
Uses of RetrySchema in io.helidon.media.common
Methods in io.helidon.media.common with parameters of type RetrySchema Modifier and Type Method Description static Function<ReadableByteChannel,Flow.Publisher<DataChunk>>ContentWriters. byteChannelWriter(RetrySchema retrySchema)Returns a writer function forReadableByteChannel.Constructors in io.helidon.media.common with parameters of type RetrySchema Constructor Description ReadableByteChannelPublisher(ReadableByteChannel channel, RetrySchema retrySchema)Creates new instance.
-