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 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 RetrySchema Modifier and Type Method Description IoMulti.MultiFromByteChannelBuilder
IoMulti.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 RetrySchema Modifier and Type Method Description DefaultMediaSupport.Builder
DefaultMediaSupport.Builder. byteChannelRetrySchema(RetrySchema schema)
Set specificRetrySchema
to the byte channel.static Function<ReadableByteChannel,Flow.Publisher<DataChunk>>
ContentWriters. byteChannelWriter(RetrySchema retrySchema)
Deprecated.since 2.0.0, useDefaultMediaSupport.byteChannelWriter(RetrySchema)
} insteadstatic MessageBodyWriter<ReadableByteChannel>
DefaultMediaSupport. byteChannelWriter(RetrySchema schema)
Return newReadableByteChannel
writer instance with specificRetrySchema
.Constructors in io.helidon.media.common with parameters of type RetrySchema Constructor Description ReadableByteChannelPublisher(ReadableByteChannel channel, RetrySchema retrySchema)
Deprecated, for removal: This API element is subject to removal in a future version.
-