Class RestartWithBackoffFlow<In,Out>
- java.lang.Object
-
- akka.stream.stage.GraphStageWithMaterializedValue<S,NotUsed>
-
- akka.stream.stage.GraphStage<FlowShape<In,Out>>
-
- akka.stream.scaladsl.RestartWithBackoffFlow<In,Out>
-
public final class RestartWithBackoffFlow<In,Out> extends GraphStage<FlowShape<In,Out>>
Wrap the givenFlowwith aFlowthat will restart it when it fails using an exponential backoff. Notice that thisFlowwill not restart on completion of the wrapped flow.This
Flowwill not emit any failure The failures by the wrappedFlowwill be handled by restarting the wrappingFlowas long as maxRestarts is not reached. Any termination signals sent to thisFlowhowever will terminate the wrappedFlow, if it's running, and then theFlowwill be allowed to terminate without being restarted.The restart process is inherently lossy, since there is no coordination between cancelling and the sending of messages. A termination signal from either end of the wrapped
Flowwill cause the other end to be terminated, and any in transit messages will be lost. During backoff, thisFlowwill backpressure.This uses the same exponential backoff algorithm as
Backoff.param: minBackoff minimum (initial) duration until the child actor will started again, if it is terminated param: maxBackoff the exponential back-off is capped to this duration param: randomFactor after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.
0.2adds up to20%delay. In order to skip this additional delay pass in0. param: maxRestarts the amount of restarts is capped to this amount within a time frame of minBackoff. Passing0will cause no restarts and a negative number will not cap the amount of restarts. param: flowFactory A factory for producing theFlowto wrap.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRestartWithBackoffFlow.Delaystatic classRestartWithBackoffFlow.Delay$
-
Constructor Summary
Constructors Constructor Description RestartWithBackoffFlow(scala.Function0<Flow<In,Out,?>> flowFactory, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor, boolean onlyOnFailures, int maxRestarts)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RestartWithBackoffLogic<FlowShape<In,Out>>createLogic(Attributes inheritedAttributes)Inlet<In>in()Outlet<Out>out()FlowShape<In,Out>shape()The shape of a graph is all that is externally visible: its inlets and outlets.-
Methods inherited from class akka.stream.stage.GraphStage
createLogicAndMaterializedValue
-
Methods inherited from class akka.stream.stage.GraphStageWithMaterializedValue
createLogicAndMaterializedValue, initialAttributes, traversalBuilder, withAttributes
-
-
-
-
Method Detail
-
shape
public FlowShape<In,Out> shape()
Description copied from interface:GraphThe shape of a graph is all that is externally visible: its inlets and outlets.- Returns:
- (undocumented)
-
createLogic
public RestartWithBackoffLogic<FlowShape<In,Out>> createLogic(Attributes inheritedAttributes)
- Specified by:
createLogicin classGraphStage<FlowShape<In,Out>>
-
-