UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

38 lines 1.12 kB
/* tslint:disable:no-empty */ export class GeneXusSDSynchronizationSynchronizationEvents { /** * Checks if there are any pending changes to submit to the server. * @param {number} eventStatus * @return {boolean} Current implementation returns always `false`. */ static hasEvents(eventStatus) { return false; } /** * Accesses the stored events for processing. * @param {number} eventStatus * @return {any[]} Current implementation returns an empty array. */ static getEvents(eventStatus) { return []; } /** * Marks as pending an events in order to try sending it again later * * Current implementation does nothing. * @param {GxGuid} eventGUID */ static markEventAsPending(eventGUID) { // Empty implemetation } /** * Removes some registry of the GXPendingEvents table. * * Current implementation does nothing. * @param {GxGuid} eventGUID */ static removeEvent(eventGUID) { // Empty implemetation } } //# sourceMappingURL=synchronizationEvents.js.map