Rx.Observable.prototype.takeUntilWithTime(other)

Returns the values from the source observable sequence until the other observable sequence produces a value.

Arguments

  1. 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.
  2. [scheduler] (Scheduler): Scheduler to run the timer on.

Returns

(Observable): An observable sequence with the elements taken until the specified end time.

Example