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
duration?: number
endTime?: string
includeFiles?: ReloadIncludeFile[]
isPartialReload?: boolean
loadDataFilesBytes?: number
loadExternalBytes?: number
loadFilesBytes?: number
reloadId?: string
rowLimit?: number
skipStore?: boolean

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

statements?: ReloadStatements[]
storeDataFilesBytes?: number
storeFilesBytes?: number
storeHash?: string
success?: boolean