@w11k/rx-ninja
    Preparing search index...

    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

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