user975027
user975027

Reputation: 319

Firebase limit on the number of observers/listeners

In Firebase, we can add an observer in iOS using something like observeEventType:withBlock:. Is there a limit on the number of observers that can be attached from one client ?

Upvotes: 13

Views: 3692

Answers (1)

Rob DiMarco
Rob DiMarco

Reputation: 13266

There is no limit on the number of listeners that may be attached from one client. Also note that listeners are generally inexpensive, so it is recommended that you use them as most convenient in your application.

Upvotes: 27

Related Questions