[Replication] The order of OnRep_ and ReplicatedVarible considerred GLOBALLY

[PUZZLE]
Can anyone answer this question: :slight_smile:

//trigger from the server
HostingFuntion()
{
 ReplicatedVar1 = new value;
 ReplicatedVar2 = new value;
}

//try to use  ReplicatedVar2, that is not of its own
OnRep_ReplicatedVar1();
{
  Using 'ReplicatedVar2'; //can it get the 'new value' here? 
}

//try to use  ReplicatedVar1, that is not of its own
OnRep_ReplicatedVar2()
{
  Using 'ReplicatedVar1'; //can it get the 'new value' here? 
}

+I know that there is no gaurantee that OnRep_ReplicatedVar1() will run before OnRep_ReplicatedVar2() or vice versa
+I also know that ReplicatedVar1 got new value before OnRep_ReplicatedVar1() triggers, if we consider it LOCALLY
+But Is there a gaurantee that ReplicatedVar1 and ReplicatedVar2 got new values before their OnReps trigger, if we consider it GLOBALLY? :slight_smile: