All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalajs.rx.RangeObservable.scala Maven / Gradle / Ivy

The newest version!
package org.scalajs.rx

import scala.scalajs.js

/**
  * Range Observable
  * @author [email protected]
  */
@js.native
trait RangeObservable[T] extends Observable[T] {

  /**
    * The value of the first integer in the sequence.
    * @return the first integer in the sequence.
    */
  def start: T = js.native

  /**
    * The number of sequential integers to generate.
    * @return the number of sequential integers to generate.
    */
  def count: T = js.native

  /**
    * Scheduler to run the generator loop on.
    * @return the scheduler
    */
  def scheduler: Scheduler = js.native

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy