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.reactiveMethods 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.
- 
Uses of RetrySchema in io.helidon.media.commonMethods in io.helidon.media.common with parameters of type RetrySchema Modifier and Type Method Description DefaultMediaSupport.BuilderDefaultMediaSupport.Builder. byteChannelRetrySchema(RetrySchema schema)Set specificRetrySchemato 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 newReadableByteChannelwriter 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.
 
-