Represents a PulseScheduler that processes entities matching a query.

Hierarchy

Constructors

  • Creates a new EntityPulseScheduler instance.

    Parameters

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

          • t: Entity

          Returns void

    • period: number

      The period of the scheduler.

    • queryOptions: EntityQueryOptions

      The query options to use when querying for entities.

    Returns EntityPulseScheduler

Properties

compareEntities: any
items: Entity[]
processor: ((t) => void)

Type declaration

    • (t): void
    • Parameters

      • t: Entity

      Returns void

queryOptions: any

Methods

  • Adds an item to the schedule.

    Parameters

    • item: Entity

      The item to be added.

    Returns void

    Deprecated

    Use push instead.

  • Adds multiple items to the schedule.

    Parameters

    • items: Entity[]

      The items to be added.

    Returns void

    Deprecated

    Use push instead.

  • Returns a list of the items in the schedule.

    Returns readonly Entity[]

  • Returns undefined | Entity

  • Parameters

    • Rest ...items: Entity[]

    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: Entity

          Returns boolean

    Returns void

  • Returns undefined | Entity

  • Parameters

    • start: number
    • Optional deleteCount: number

    Returns Entity[]

  • Parameters

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

    Returns Entity[]

  • Starts the schedule.

    Returns void

  • Stops the schedule.

    Returns void

  • Parameters

    • Rest ...items: Entity[]

    Returns number