Represents a scheduler that executes a processor function at regular intervals for each item in the list.

Type Parameters

  • T

    The type of items in the scheduler.

Hierarchy

Constructors

  • Creates a new PulseScheduler instance.

    Type Parameters

    • T

    Parameters

    • processor: ((t) => void)
        • (t): void
        • Parameters

          • t: T

          Returns void

    • period: number

      The period of the scheduler.

    Returns PulseScheduler<T>

Properties

currentTick: any
executionSchedule: any
items: any
nextIndex: any
period: any
processor: ((t) => void)

Type declaration

    • (t): void
    • Parameters

      • t: T

      Returns void

recalculateExecutionSchedule: any
runId?: any
tick: any

Methods

  • Adds an item to the schedule.

    Parameters

    • item: T

      The item to be added.

    Returns void

  • Adds multiple items to the schedule.

    Parameters

    • items: T[]

      The items to be added.

    Returns void

  • Returns a list of the items in the schedule.

    Returns T[]

  • Removes an item from the schedule at the specified index.

    Parameters

    • index: number

      The index of the item to remove.

    Returns void

  • Removes items from the schedule that satisfy the given predicate.

    Parameters

    • predicate: ((t) => boolean)

      The predicate function used to determine if an item should be removed.

        • (t): boolean
        • Parameters

          • t: T

          Returns boolean

    Returns void

  • Starts the schedule.

    Returns void

  • Stops the schedule.

    Returns void