Two procedures f1 and f2 are launched from Activity, returning true or false.
Each procedure may be completed before the other. I need to get the result when both procedures return true.
How can I check this?
B4X:
Dim a As Boolean=f1(x)
Dim b As Boolean=f2(y)
How can I check this?