You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
explanation: returns the taskStatus of the taskId (QUEUE -> [CUSTOM_STATUS] -> DONE/ERROR)
Parameter1: taskId (integer)
check [syncTask]
explanation: returns if the extension is loaded
Parameter1: dllName (string)
how it works
you call the TBModExtension
syncTask get executed and if the return of one is 1 (successful) or -1 (error) it returns
if return is 0 (no syncTask was executed) your call is put in the threadpool, you get a taskId as return and the taskStatus is set to QUEUE
if the threadpool execute your call all asyncTasks get executed, if it was successful your taskStatus is set to DONE or if something fails to ERROR... the extensions can set the taskStatus between QUEUE and DONE/ERROR itself