@wpazderski/js-utils
    Preparing search index...

    Scheduler that uses the browser's requestAnimationFrame to schedule tasks.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    _isFrozen: boolean = false

    Indicates whether the scheduler is frozen.

    allowSchedulingWhenScheduled: boolean = false

    Indicates whether the scheduler allows scheduling (scheduleCore() call) when it is already scheduled. This can be overridden in subclasses to change the default behavior.

    animationFrameHandle: null | AnimationFrameHandle = null

    Handle for the scheduled animation frame. This is set to null when no animation frame is scheduled.

    The callback function to be executed by the scheduler.

    shouldBeScheduledOnUnfreeze: boolean = false

    Indicates whether the scheduler should be scheduled on unfreeze.

    Accessors

    Methods

    • Freezes the scheduler, preventing it from executing the callback. If the scheduler is currently scheduled, it will be canceled and then rescheduled on unfreeze(). If the scheduler is already frozen, this method does nothing.

      Returns void

    • Unfreezes the scheduler, allowing it to execute the callback again. If the scheduler was frozen with a scheduled callback, it will be rescheduled. If schedule() was called while frozen, it will be scheduled now. If the scheduler is not frozen, this method does nothing.

      Returns void