Type Definitions
-
errorCallback(err)
-
error callback that gets notified if there is an error
Parameters:
Name Type Description errObject Error data object Properties
Name Type Description typeNumber The type of error. Should be one of the error constants in the api like FILE_IO_ERROR msgString An explanation of the error in English. -
progressCallback(progress)
-
progress callback that gets notified of the progress of various operaions
Parameters:
Name Type Description progressObject Progress data object Properties
Name Type Description pctNumber a number between 1-100 that indicates the percentage of the operation that is complete. msgString An description of the current state of the operation in English. -
successCallback()
-
success callback that gets notified when an operation completes successfully.