Firebase limit on the number of observers/listeners

后端 未结 1 1665
不知归路
不知归路 2020-12-01 18:52

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 fr

相关标签:
1条回答
  • 2020-12-01 19:30

    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.

    0 讨论(0)
提交回复
热议问题