asyncExec
Executesa function outside of the UI current thread.
This is especially useful for operations that take time to complete.You can use asyncExec to run such operations while continuing to execute the rest of your tasks.
Syntax
ogscript.asyncExec (function);
Parameters
Parameter |
Type |
Required |
Description |
function |
Function reference |
Yes |
Reference to the function to be run. |
Returns
N/A
Example
Coming soon.