Rx.Observable.prototype.takeUntilWithTime(endTime, [scheduler])
Returns the values from the source observable sequence until the end time.
Arguments
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.
Returns
(Observable
): An observable sequence with the elements taken until the specified end time.
Example
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
Location
File:
Dist:
Prerequisites:
- If using
rx.time.js
NPM Packages:
NuGet Packages:
Unit Tests: