SerenityJS
    Preparing search index...

    Hierarchy (View Summary)

    Index

    Constructors

    • Creates a new instance of the DataStoreUpdate class.

      Parameters

      • dataStoreName: string

        The name of the data store that was updated.

      • property: string

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

      • path: string

        The path of the property that was updated. This is used to identify which property was updated when reading from the binary stream.

      • value: string | number | boolean

        The new value of the property after the update.

      • propertyUpdateCount: number

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

      • pathUpdateCount: 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.

      Returns DataStoreUpdate

    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.

    path: string

    The path of the property that was updated. This is used to identify which property was updated when reading from the binary stream.

    pathUpdateCount: 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.

    property: string

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

    propertyUpdateCount: 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.

    typeId: 0

    The type identifier for a data store update.

    value: string | number | boolean

    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