onCommitted Readonly
onCommitted: BeEvent<(hasPendingTxns: boolean, time: number) => void> = ...
Event raised after a commit operation is performed. Initiated by a call to saveChanges, even if there were no changes to save. The event supplies the following information:
hasPendingTxns
: true if the briefcase has local changes not yet pushed to the server.time
: the time at which changes were saved on the backend (obtained viaDate.now()
).
@see onCommit for the event raised before the operation.
Defined in
Last Updated: 13 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.