When using Cloud Firestore, it is possible to subscribe to the change/update events for the document of which mobile user is interested in.
What I wonder is: Is there a practical limit for the number of realtime data listeners for each mobile device? For an intermediate mobile device is there any limit we should not exceed?
IMHO, creating realtime data listeners on Firestore in practice corresponds to the topic subscriptions on a socket server which shouldn't have any overhead on the client-side. However, I couldn't find any documentation on this very specific issue of Firestore implementation and would like to ask for any theoretical or practical know-how you have.