UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

42 lines 1.35 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GeneXusSDSynchronizationSynchronizationEvents = void 0; /* tslint:disable:no-empty */ 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 } } exports.GeneXusSDSynchronizationSynchronizationEvents = GeneXusSDSynchronizationSynchronizationEvents; //# sourceMappingURL=synchronizationEvents.js.map