Trait

io.scalajs.npm.rx

SchedulerClass

Related Doc: package rx

Permalink

trait SchedulerClass extends Object

Scheduler Class

Annotations
@RawJSType() @native()
Linear Supertypes
Object, Any, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SchedulerClass
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def async: Scheduler

    Permalink

    Gets a scheduler that schedules work via a timed callback based upon platform.

    Gets a scheduler that schedules work via a timed callback based upon platform.

    For all schedule calls, it defaults to:

    • Node.js: uses setImmediate for newer builds, and process.nextTick for older versions. Browser: depending on platform may use setImmediate, MessageChannel, window.postMessage and for older versions of IE, it will default to script.onreadystatechanged, else falls back to window.setTimeout.
    • For all relative and absolute scheduling, it defaults to using window.setTimeout.
    See also

    Rx.Scheduler.`default`

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def currentThread: Scheduler

    Permalink

    Gets a scheduler that schedules work as soon as possible on the current thread.

    Gets a scheduler that schedules work as soon as possible on the current thread. This implementation does not support relative and absolute scheduling due to thread blocking required.

    Example:
    1. Rx.Scheduler.currentThread

  8. def default: Scheduler

    Permalink

    Gets a scheduler that schedules work via a timed callback based upon platform.

    Gets a scheduler that schedules work via a timed callback based upon platform. An alias exists as Rx.Scheduler.async.

    For all schedule calls, it defaults to:

    • Node.js: uses setImmediate for newer builds, and process.nextTick for older versions. Browser: depending on platform may use setImmediate, MessageChannel, window.postMessage and for older versions of IE, it will default to script.onreadystatechanged, else falls back to window.setTimeout.
    • For all relative and absolute scheduling, it defaults to using window.setTimeout.
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. def immediate: Scheduler

    Permalink

    Gets a scheduler that schedules work immediately on the current thread.

    Gets a scheduler that schedules work immediately on the current thread.

    Example:
    1. Rx.Scheduler.immediate

  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  18. def isScheduler(obj: Any): Boolean

    Permalink

    Determines whether the given object is a Scheduler instance.

    Determines whether the given object is a Scheduler instance.

    obj

    (Any): The object to determine whether it is a Scheduler instance.

    returns

    (Boolean): Whether the given object is a Scheduler.

  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def normalize(timeSpan: TimeSpan): TimeSpan

    Permalink

    Normalizes the specified time span value to a positive value.

    Normalizes the specified time span value to a positive value.

    timeSpan

    (Number): The time span value to normalize.

    returns

    (Number): The specified time span value if it is zero or positive; otherwise, 0

    Example:
    1. Rx.Scheduler.normalize(timeSpan)

  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  28. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped