The execution of OnTesterPass() event after OnTester() event is synchronous or asynchronous?

 

I wonder if the execution of OnTesterPass() event is synchronized with respect to the execution of each OnTester() event. 

I mean if OnTester() runs on different threads simultaneously. When they are finished then OnTesterPass() are finshed is in the same sequence? Or they are disorderly?

Thank you so much!!

 
karp wak:

I wonder if the execution of OnTesterPass() event is synchronized with respect to the execution of each OnTester() event. 

I mean if OnTester() runs on different threads simultaneously. When they are finished then OnTesterPass() are finshed is in the same sequence? Or they are disorderly?

Thank you so much!!

Not it's not synchronized. Not only it's different threads, but it could also run on different computers, you definitely don't want this to be synchronized.
 
Alain Verleyen #:
Not it's not synchronized. Not only it's different threads, but it could also run on different computers, you definitely don't want this to be synchronized.

Thank you very much for your reply