LatestValueManagerEvents Interface
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/presence/alpha
.
For more information about our API support guarantees, see here.
Signature
/** @sealed */
export interface LatestValueManagerEvents<T>
Type Parameters
Parameter | Description |
---|---|
T |
Events
Property | Alerts | Type | Description |
---|---|---|---|
updated | Alpha |
(update: LatestValueClientData<T>) => void | Raised when remote client's value is updated, which may be the same value. |
Event Details
updated
Raised when remote client's value is updated, which may be the same value.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/presence/alpha
.
For more information about our API support guarantees, see here.
Signature
updated: (update: LatestValueClientData<T>) => void;
Type: (update: LatestValueClientData<T>) => void