interface UpdateRecord<T> {
    updateCount: undefined | bigint;
    value: T;
}

Type Parameters

  • T

Properties

Properties

updateCount: undefined | bigint

is a value that identifies the update. For the last update, it is undefined.

value: T

is whatever state the service wants to publish