Rank: Advanced Member Groups: Member
Joined: 6/20/2016 Posts: 32
|
When calling webview loadurl, I'm just curious what is the difference between waitone, waitany and waitall?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
The difference is just as the name suggested: WaitOne waits for a single task. WaitAny and WaitAll wait for multiple taskes, the difference between these two is WaitAny returns when any of the multiple task completes, where as WaitAll only returns when all the tasks complete.
Thanks
|