Hi Developers,
I have a quick question on Background Processing in Design Studio 1.3. If I put APPLICATION.doBackgroundProcessing() statement in the begining of "On Startup", will the cursor wait for background processing to finish before executing rest of the code in Startup or system will execute On Startup and "background processing" at the same time? Below is an example:
On Startup
{
APPLICATION.doBackgroundProcessing()
other logic within startup
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
-----------------------------------------
}
On Background Processing
{
Logic in background block
-----------------------------------------
-----------------------------------------
-----------------------------------------
}