Class UniquePulseScheduler<T>

Represents a PulseScheduler that only adds unique items to the schedule.

Type Parameters

  • T

Hierarchy

Constructors

  • Creates a new UniquePulseScheduler instance.

    Type Parameters

    • T

    Parameters

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

          • t: T

          Returns void

    • period: number

      The period of the scheduler.

    • Optional equalityFunction: ((a, b) => boolean)
        • (a, b): boolean
        • Parameters

          • a: T
          • b: T

          Returns boolean

    Returns UniquePulseScheduler<T>

Properties

equalityFunction: any
items: T[]
processor: ((t) => void)

Type declaration

    • (t): void
    • Parameters

      • t: T

      Returns void

Methods

  • Adds an item to the schedule.

    Parameters

    • item: T

      The item to be added.

    Returns void

    Deprecated

    Use push instead.

  • Adds multiple items to the schedule.

    Parameters

    • items: T[]

      The items to be added.

    Returns void

    Deprecated

    Use push instead.

  • Returns a list of the items in the schedule.

    Returns readonly T[]

  • Returns undefined | T

  • Parameters

    • Rest ...items: T[]

    Returns number

  • 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

  • Returns undefined | T

  • Parameters

    • start: number
    • Optional deleteCount: number

    Returns T[]

  • Parameters

    • start: number
    • deleteCount: number
    • Rest ...items: T[]

    Returns T[]

  • Starts the schedule.

    Returns void

  • Stops the schedule.

    Returns void

  • Parameters

    • Rest ...items: T[]

    Returns number