TTMSFNCCloudMyCloudDataTable

I have a var tbl : TTMSFNCCloudMyCloudDataTable;
I have a method

procedure Doload;
begin
tbl := myclLOG.TableByName('WR_LOG');
tbl.GetMetaData;
end;

Then, in the OnGetMetaData I do tbl.Query and in the OnQuery I have access to the fileds and entities.
What if I chgange the method to:

procedure Doload;
begin
tbl := myclLOG.TableByName('WR_LOG');
tbl.GetMetaData;
tbl := myclLOG.TableByName('WR_USER');
tbl.GetMetaData;
end;

Are the async events of in order or may the collide? Or should I acces the second tbl when querying the first has finished?

Please note that the order in which the async events are triggered is not guaranteed.
You'll need to wait until the first request has finished before executing the second request.