Uses of Interface
org.apache.flink.streaming.api.functions.async.AsyncRetryStrategy
Packages that use AsyncRetryStrategy
Package
Description
-
Uses of AsyncRetryStrategy in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type AsyncRetryStrategyModifier and TypeMethodDescriptionstatic <IN,OUT> org.apache.flink.streaming.api.datastream.SingleOutputStreamOperator<OUT> AsyncDataStream.orderedWaitWithRetry(org.apache.flink.streaming.api.datastream.DataStream<IN> in, AsyncFunction<IN, OUT> func, long timeout, TimeUnit timeUnit, int capacity, AsyncRetryStrategy<OUT> asyncRetryStrategy) Adds an AsyncWaitOperator with an AsyncRetryStrategy to support retry of AsyncFunction.static <IN,OUT> org.apache.flink.streaming.api.datastream.SingleOutputStreamOperator<OUT> AsyncDataStream.orderedWaitWithRetry(org.apache.flink.streaming.api.datastream.DataStream<IN> in, AsyncFunction<IN, OUT> func, long timeout, TimeUnit timeUnit, AsyncRetryStrategy<OUT> asyncRetryStrategy) Adds an AsyncWaitOperator with an AsyncRetryStrategy to support retry of AsyncFunction.static <IN,OUT> org.apache.flink.streaming.api.datastream.SingleOutputStreamOperator<OUT> AsyncDataStream.unorderedWaitWithRetry(org.apache.flink.streaming.api.datastream.DataStream<IN> in, AsyncFunction<IN, OUT> func, long timeout, TimeUnit timeUnit, int capacity, AsyncRetryStrategy<OUT> asyncRetryStrategy) Adds an AsyncWaitOperator with an AsyncRetryStrategy to support retry of AsyncFunction.static <IN,OUT> org.apache.flink.streaming.api.datastream.SingleOutputStreamOperator<OUT> AsyncDataStream.unorderedWaitWithRetry(org.apache.flink.streaming.api.datastream.DataStream<IN> in, AsyncFunction<IN, OUT> func, long timeout, TimeUnit timeUnit, AsyncRetryStrategy<OUT> asyncRetryStrategy) Adds an AsyncWaitOperator with an AsyncRetryStrategy to support retry of AsyncFunction. -
Uses of AsyncRetryStrategy in org.apache.flink.streaming.api.operators.async
Constructors in org.apache.flink.streaming.api.operators.async with parameters of type AsyncRetryStrategyModifierConstructorDescriptionAsyncWaitOperator(org.apache.flink.streaming.api.operators.StreamOperatorParameters<OUT> parameters, AsyncFunction<IN, OUT> asyncFunction, long timeout, int capacity, AsyncDataStream.OutputMode outputMode, AsyncRetryStrategy<OUT> asyncRetryStrategy, org.apache.flink.streaming.runtime.tasks.ProcessingTimeService processingTimeService, org.apache.flink.api.common.operators.MailboxExecutor mailboxExecutor) AsyncWaitOperatorFactory(AsyncFunction<IN, OUT> asyncFunction, long timeout, int capacity, AsyncDataStream.OutputMode outputMode, AsyncRetryStrategy<OUT> asyncRetryStrategy) -
Uses of AsyncRetryStrategy in org.apache.flink.streaming.util.retryable
Classes in org.apache.flink.streaming.util.retryable that implement AsyncRetryStrategyModifier and TypeClassDescriptionstatic classExponentialBackoffDelayRetryStrategy.static classFixedDelayRetryStrategy.