The resulting observable first emits all values from source observable.
On completion of source the given continueWith function will be called and returns another observable.
Resulting observable continues with emitted values of this observable provided by the continueWith function.
The resulting observable first emits all values from source observable. On completion of source the given continueWith function will be called and returns another observable. Resulting observable continues with emitted values of this observable provided by the continueWith function.
source: -a-b-c-|
return of continueWith: --d-e-f-|
result: -a-b-c---d-e-f-|