ActiveListActivatedMultipleEvent<T>

TYPE DEFINITION

Represents multiple activations happening at the same time in an ActiveList.

Since 1.0.0

Extends ActiveListBaseEvent

Properties

  • deactivatedIndexes

    number []

    The indexes of the deactivated items.

    A deactivation will only happen as part of an activation when maxActivationLimit is set to a number and maxActivationLimitBehavior is set to circular.

    Note: these are the indexes at the time of the deactivation, it might no longer be accurate.

    Since 1.5.0

  • deactivatedValues

    T []

    The values which were deactivated.

    A deactivation will only happen as part of an activation when maxActivationLimit is set to a number and maxActivationLimitBehavior is set to circular.

    Note: these are the values at the time of deactivation, they might no longer be accurate. Keep in mind that when the value is an object or an array, they can still be mutated, because no copy is made.

    Since 1.5.0

  • indexes

    number []

    The indexes of the activated items.

    Note: these are the indexes at the time of the activation, it might no longer be accurate.

    Since 1.0.0

  • type

    "ACTIVATED_MULTIPLE"

    Which type occurred

    Since 1.0.0

  • values

    T []

    The values which were activated.

    Note: these are the values at the time of activation, they might no longer be accurate. Keep in mind that when the value is an object or an array, they can still be mutated, because no copy is made.

    Since 1.0.0