java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | io.reactivex.parallel.ParallelFailureHandling |
Enumerations for handling failure within a parallel operator.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ParallelFailureHandling | ERROR | The current rail is stopped and the error is signalled. | |||||||||
ParallelFailureHandling | RETRY | Retry the current value. | |||||||||
ParallelFailureHandling | SKIP | The current value and error is ignored and the rail resumes with the next item. | |||||||||
ParallelFailureHandling | STOP | The current rail is stopped and the error is dropped. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ParallelFailureHandling | apply(Long t1, Throwable t2) | ||||||||||
static ParallelFailureHandling | valueOf(String name) | ||||||||||
final static ParallelFailureHandling[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
The current rail is stopped and the error is signalled.
The current value and error is ignored and the rail resumes with the next item.
The current rail is stopped and the error is dropped.