| Package | Description |
|---|---|
| io.helidon.common.reactive |
Common reactive library for Helidon projects.
|
| io.helidon.webserver |
Reactive web server API.
|
| Modifier and Type | Method and 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.
|
| Modifier and Type | Method and Description |
|---|---|
static java.util.function.Function<java.nio.channels.ReadableByteChannel,Flow.Publisher<DataChunk>> |
ContentWriters.byteChannelWriter(RetrySchema retrySchema)
Returns a writer function for
ReadableByteChannel. |
| Constructor and Description |
|---|
ReadableByteChannelPublisher(java.nio.channels.ReadableByteChannel channel,
RetrySchema retrySchema)
Creates new instance.
|
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.