case object PropagateFailure extends Strategy with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- PropagateFailure
- Serializable
- Product
- Equals
- Strategy
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Strategy that treats
cancelStage
in different ways depending on the cause that was given to the cancellation.If the cause was a regular, active cancellation (
SubscriptionWithCancelException.NoMoreElementsNeeded
), the stage receiving this cancellation is completed regularly.If another cause was given, this is treated as an error and the behavior is the same as with
failStage
.This is a good default strategy.