Type Alias DoReloadExResult

The result and path to script log for a reload.

type DoReloadExResult = {
    qEndedWithMemoryConstraint?: boolean;
    qFailureData?: FailureData;
    qScriptLogFile?: string;
    qSuccess?: boolean;
}
Index

Properties

qEndedWithMemoryConstraint?: boolean

true if memory limits were exhausted during reload.

qFailureData?: FailureData

Extra information (if available) in case reload was not successful.

qScriptLogFile?: string

Path to the script log file.

qSuccess?: boolean

The reload is successful if True.