Uses of Interface
io.helidon.common.reactive.RetrySchema
Packages that use 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
Methods in io.helidon.common.reactive that return RetrySchemaModifier 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.Methods in io.helidon.common.reactive with parameters of type RetrySchemaModifier and TypeMethodDescriptionIoMulti.MultiFromByteChannelBuilder.retrySchema
(RetrySchema retrySchema) Retry schema to use when reading from the channel. -
Uses of RetrySchema in io.helidon.media.common
Methods in io.helidon.media.common with parameters of type RetrySchemaModifier 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
.Constructors in io.helidon.media.common with parameters of type RetrySchemaModifierConstructorDescriptionReadableByteChannelPublisher
(ReadableByteChannel channel, RetrySchema retrySchema) Deprecated, for removal: This API element is subject to removal in a future version.
DefaultMediaSupport.byteChannelWriter(RetrySchema)
} instead