| FlowOperationsRecoverWithRetriesTIn, TOut, TMat Method |
RecoverWithRetries allows to switch to alternative Source on flow failure. It will stay in effect after
a failure has been recovered up to
attempts number of times so that each time there is a failure it is fed into the
partialFunc and a new
Source may be materialized. Note that if you pass in 0, this won't attempt to recover at all. Passing in -1 will behave exactly the same as
RecoverWithRetriesTIn, TOut, TMat(FlowTIn, TOut, TMat, FuncException, IGraphSourceShapeTOut, TMat, Int32).
Since the underlying failure signal onError arrives out-of-band, it might jump over existing elements.
This stage can recover the failure signal, but not the skipped elements, which will be dropped.
Emits when element is available from the upstream or upstream is failed and element is available from alternative Source
Backpressures when downstream backpressures
Completes when upstream completes or upstream failed with exception partialFunc can handle
Cancels when downstream cancels
Namespace:
Akka.Streams.Dsl
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static Flow<TIn, TOut, TMat> RecoverWithRetries<TIn, TOut, TMat>(
this Flow<TIn, TOut, TMat> flow,
Func<Exception, IGraph<SourceShape<TOut>, TMat>> partialFunc,
int attempts
)
[<ExtensionAttribute>]
static member RecoverWithRetries :
flow : Flow<'TIn, 'TOut, 'TMat> *
partialFunc : Func<Exception, IGraph<SourceShape<'TOut>, 'TMat>> *
attempts : int -> Flow<'TIn, 'TOut, 'TMat>
Parameters
- flow
- Type: Akka.Streams.DslFlowTIn, TOut, TMat
TBD - partialFunc
- Type: SystemFuncException, IGraphSourceShapeTOut, TMat
Receives the failure cause and returns the new Source to be materialized if any - attempts
- Type: SystemInt32
Maximum number of retries or -1 to retry indefinitely
Type Parameters
- TIn
- TBD
- TOut
- TBD
- TMat
- TBD
Return Value
Type:
FlowTIn,
TOut,
TMatTBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FlowTIn,
TOut,
TMat. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions See Also