Example #1
0
def on_error_resume_next(self, second):
    """Continues an observable sequence that is terminated normally or by
    an exception with the next observable sequence.

    Keyword arguments:
    second -- Second observable sequence used to produce results after the
        first sequence terminates.

    Returns an observable sequence that concatenates the first and second
    sequence, even if the first sequence terminates exceptionally.
    """

    if not second:
        raise Exception('Second observable is required')

    return Observable.on_error_resume_next([self, second])
Example #2
0
 def create():
     return Observable.on_error_resume_next(o1, o2, o3, o4, o5)
Example #3
0
 def create():
     return Observable.on_error_resume_next(o1, o2, o3)
Example #4
0
 def create():
     return Observable.on_error_resume_next(o1, factory)
Example #5
0
 def create():
     return Observable.on_error_resume_next(o1, factory)