Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase limit on the number of observers/listeners

Tags:

ios

firebase

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 ?

like image 937
user975027 Avatar asked Dec 20 '14 19:12

user975027


1 Answers

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.

like image 88
Rob DiMarco Avatar answered Sep 29 '22 03:09

Rob DiMarco