I am struggling to find the answer to my question, I was reading through the docs, but couldn’t find any reference related to this.
I have a server that sends updates to my Firebase Realtime Database. For example I am sending 3 separate write requests that updates 3 different paths
set(ref(db, 'location/A'))
set(ref(db, 'location/B'))
set(ref(db, 'location/C'))
if I then set listeners in the same order in my front-end application, is it always guaranteed that I will receive responses in the same order as they were created in the server e.g A,B,C or there is always a chance of a race condition?