SerenityJS
    Preparing search index...

    Hierarchy (View Summary)

    Index

    Constructors

    • Creates a new instance of the DataStoreChange class.

      Parameters

      • dataStoreName: string

        The name of the data store that was updated.

      • property: string

        The name of the property that was updated.

      • updateCount: number

        The number of times the property has been updated, including this update.

      • value: DataStorePropertyValue

        The new value of the property after the update.

      Returns DataStoreChange

    Properties

    dataStoreName: string

    The name of the data store that was updated. This is used to identify which data store was updated when reading from the binary stream.

    property: string

    The name of the property that was updated.

    typeId: 1

    The type identifier for a property update change.

    updateCount: number

    The number of times the property has been updated, including this update. This is used to determine if an update is out of order or if an update was missed.

    value: DataStorePropertyValue

    The new value of the property after the update. This is used to update the client with the new value of the property after the update.

    Methods