| SubFlowOperationsRecoverWithTOut, TMat, TClosed Method |
Note: This API is now obsolete.
RecoverWith allows to switch to alternative Source on flow failure. It will stay in effect after
a failure has been recovered so that each time there is a failure it is fed into the
partialFunc and a new
Source may be materialized.
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 [ObsoleteAttribute("Use RecoverWithRetries instead. [1.1.2]")]
public static SubFlow<TOut, TMat, TClosed> RecoverWith<TOut, TMat, TClosed>(
this SubFlow<TOut, TMat, TClosed> flow,
Func<Exception, IGraph<SourceShape<TOut>, TMat>> partialFunc
)
[<ExtensionAttribute>]
[<ObsoleteAttribute("Use RecoverWithRetries instead. [1.1.2]")>]
static member RecoverWith :
flow : SubFlow<'TOut, 'TMat, 'TClosed> *
partialFunc : Func<Exception, IGraph<SourceShape<'TOut>, 'TMat>> -> SubFlow<'TOut, 'TMat, 'TClosed>
Parameters
- flow
- Type: Akka.Streams.DslSubFlowTOut, TMat, TClosed
TBD - partialFunc
- Type: SystemFuncException, IGraphSourceShapeTOut, TMat
TBD
Type Parameters
- TOut
- TBD
- TMat
- TBD
- TClosed
- TBD
Return Value
Type:
SubFlowTOut,
TMat,
TClosedTBD
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SubFlowTOut,
TMat,
TClosed. 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).
See Also