Suppose in a client, I do two puts in a particular order:
regionA.put(K,V); regionB.put(K,V);If another client has registered interest on both regions, is there any guaranty about the order in which those 2 events are received on that client ? If the client is using local cache, could there be a time when region B contains the new value but region A contains the old value ?
