Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 861 Bytes

takeuntilwithtime.md

File metadata and controls

24 lines (13 loc) · 861 Bytes

{% if book.isPdf %}

takeUntilWithTime

{% else %}

{% endif %}

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