Uses of Interface
io.helidon.common.reactive.RetrySchema
Package
Description
Common reactive library for Helidon projects.
Common classes for processing content with a specific
MediaType
.-
Uses of RetrySchema in io.helidon.common.reactive
Modifier and TypeMethodDescriptionstatic RetrySchema
RetrySchema.constant
(long delay) Creates the retry schema with a constant result.static RetrySchema
RetrySchema.geometric
(long firstDelay, double ratio, long maxDelay) Creates the retry schema as a bounded geometric series.static RetrySchema
RetrySchema.linear
(long firstDelay, long delayIncrement, long maxDelay) Creates the retry schema with a linear delay increment.Modifier and TypeMethodDescriptionIoMulti.MultiFromByteChannelBuilder.retrySchema
(RetrySchema retrySchema) Retry schema to use when reading from the channel. -
Uses of RetrySchema in io.helidon.media.common
Modifier and TypeMethodDescriptionDefaultMediaSupport.Builder.byteChannelRetrySchema
(RetrySchema schema) Set specificRetrySchema
to the byte channel.ContentWriters.byteChannelWriter
(RetrySchema retrySchema) Deprecated.static MessageBodyWriter<ReadableByteChannel>
DefaultMediaSupport.byteChannelWriter
(RetrySchema schema) Return newReadableByteChannel
writer instance with specificRetrySchema
.ModifierConstructorDescriptionReadableByteChannelPublisher
(ReadableByteChannel channel, RetrySchema retrySchema) Deprecated, for removal: This API element is subject to removal in a future version.
DefaultMediaSupport.byteChannelWriter(RetrySchema)
} instead