2

In my Android app, I have an activity, a fragment and a dialog at the same time, each having their own addValueEventListener() for different queries. What is the simultaneous connection count at this time? Is it one because all requests coming from one client or is it three because each different request counts as one?

Mehmed
  • 2,880
  • 4
  • 41
  • 62

1 Answers1

1

A single client maintains a single connection to the Firebase Database servers. All read and write operation re-use this same connection.

Also see:

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807