UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

30 lines (29 loc) 1.02 kB
import { GxGuid } from "../../../types/gxguid"; export declare 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: number): boolean; /** * Accesses the stored events for processing. * @param {number} eventStatus * @return {any[]} Current implementation returns an empty array. */ static getEvents(eventStatus: number): any[]; /** * Marks as pending an events in order to try sending it again later * * Current implementation does nothing. * @param {GxGuid} eventGUID */ static markEventAsPending(eventGUID: GxGuid): void; /** * Removes some registry of the GXPendingEvents table. * * Current implementation does nothing. * @param {GxGuid} eventGUID */ static removeEvent(eventGUID: GxGuid): void; }