Does RxJS ensure any particular model of chronological data consistency, either in terms of logical time or wall time?
As one example, if I'm consuming values from Observable A and Observable B, created from A using an operator, can I simultaneously observe a newer value from A and an older derived value from B? If A and B use different schedulers, how does the guarantee change?
It would be also helpful to know if a term other than "consistency" or "data consistency" is used by RxJS/ReactiveX people, to help in further searching. Pretty much the only mention of time I could find in the docs is a passage in the page for Scheduler that says, "Tasks being scheduled on a particular scheduler will adhere only to the time denoted by that clock."