doc/api/core/operators/takeuntilwithtime.md
Rx.Observable.prototype.takeUntilWithTime(endTime, [scheduler])<a href="#rxobservableprototypetakeuntilwithtimeendtime-scheduler">#</a> Ⓢ
Returns the values from the source observable sequence until the end time.
endTime (Date | Number): Time to stop taking elements from the source sequence. If this value is less than or equal to the current time, the result stream will complete immediately.scheduler] (Scheduler): Scheduler to run the timer on.(Observable): An observable sequence with the elements taken until the specified end time.
var source = Rx.Observable.timer(0, 1000)
.takeUntilWithTime(5000);
var subscription = source.subscribe(
function (x) {
console.log('Next: ' + x);
},
function (err) {
console.log('Error: ' + err);
},
function () {
console.log('Completed');
});
// => Next: 0
// => Next: 1
// => Next: 2
// => Next: 3
// => Next: 4
// => Completed
File:
Dist:
Prerequisites:
rx.time.js
NPM Packages:
NuGet Packages:
Unit Tests: