Type Alias ReloadMeta

type ReloadMeta = {
    accessDbHash?: string;
    appDbHash?: string;
    duration?: number;
    endTime?: string;
    includeFiles?: ReloadIncludeFile[];
    isPartialReload?: boolean;
    loadDataFilesBytes?: number;
    loadExternalBytes?: number;
    loadFilesBytes?: number;
    reloadId?: string;
    rowLimit?: number;
    skipStore?: boolean;
    statements?: ReloadStatements[];
    storeDataFilesBytes?: number;
    storeFilesBytes?: number;
    storeHash?: string;
    success?: boolean;
}
Index

Properties

accessDbHash?: string

A Base64-encoded hash value of the new section access database.

appDbHash?: string

A Base64-encoded hash value of the new app database.

duration?: number

Duration of reload (ms).

endTime?: string

Time when reload ended.

includeFiles?: ReloadIncludeFile[]

Files brought into the script via include/mustInclude macros.

isPartialReload?: boolean

True if the reload is a partial reload.

loadDataFilesBytes?: number
loadExternalBytes?: number
loadFilesBytes?: number
reloadId?: string

Reload identifier.

rowLimit?: number

If greater than or equal 0, defines max number of rows loaded from a data source.

skipStore?: boolean

Set to true to skip Store statements. The default value is false.

statements?: ReloadStatements[]

List of external loaded or stored statements.

storeDataFilesBytes?: number
storeFilesBytes?: number
storeHash?: string

A Base64-encoded hash value of all fields stored via the store statements.

success?: boolean

true if the reload was successful.