Function skipUntilCompletionAndContinueWith

  • On completion of source observable the given continueWith function will be called and the resulting observable will emit its values. Does not emit values of the source.

    source:                 -a-b-c-|
    return of continueWith: --d-e-f-|
    result: ---------d-e-f-|

    If you also need the values from source, use onCompletionContinueWith.

    Type Parameters

    • T

    • O

    Parameters

    • continueWith: (() => Observable<O>)

      function that delivers an observable to continue with

        • (): Observable<O>
        • Returns Observable<O>

    Returns ((input) => Observable<O>)

      • (input): Observable<O>
      • Parameters

        • input: Observable<T>

        Returns Observable<O>

Generated using TypeDoc