public final class Resume
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Resume.Always<T>
Returns an observable which listens to elements from a source until it signals an error()
or finish() and continues with the next observable.
|
static class |
Resume.Conditionally<T>
Continues the observable sequence in case of exception
whith the sequence provided by the function for that particular
exception.
|
static class |
Resume.OnError<T>
It tries to submit the values of first observable, but when it throws an exeption,
the next observable within source is used further on.
|
static class |
Resume.Retry<T>
Restarts the observation until the source observable terminates normally.
|
static class |
Resume.RetryCount<T>
Restarts the observation until the source observable terminates normally
or the
count retry count was used up. |