Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 782 Bytes

File metadata and controls

24 lines (13 loc) · 782 Bytes

{% if book.isPdf %}

interval

{% else %}

{% endif %}

Returns an observable sequence that produces a value after each period.

Arguments

  1. period (Number): Period for producing the values in the resulting sequence (specified as an integer denoting milliseconds).
  2. [scheduler] (Scheduler=Rx.Scheduler.timeout): Scheduler to run the timer on. If not specified, Rx.Scheduler.timeout is used.

Returns

(Observable): An observable sequence that produces a value after each period.

Example