doc/api/core/operators/subscribeoncompleted.md
Rx.Observable.prototype.subscribeOnCompleted(onCompleted, [thisArg])Subscribes a function to invoke upon graceful termination of the observable sequence.
onCompleted (Function): Function to invoke upon graceful termination of the observable sequence.[thisArg] (Any): Object to use as this when executing callback.(Disposable): The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.
/* Using functions */
var source = Rx.Observable.range(0, 3);
var subscription = source.subscribeOnCompleted(
function () {
console.log('Completed');
});
// => Completed
/* With a thisArg */
var source = Rx.Observable.range(0, 3);
var subscription = source.subscribeOnCompleted(
function (err) {
this.log('Completed');
}, console);
// => Completed
File:
Dist:
NPM Packages:
NuGet Packages:
Unit Tests: