Hello,
With HttpJob, we write code like this:
This will run the bar() even the foo() is not finished. Is there a way to let the foo() finished before the bar() begins?
Thanks!
With HttpJob, we write code like this:
B4X:
Dim j As HttpJob
...
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
foo()
else
...
end if
bar()
Thanks!