Firebase's asynchronous callback functions are executed in the main/UI thread (see answer to this question). Is it possible to make Firebase execute them in an alternative thread?
Asked
Active
Viewed 245 times
1
-
3Sure - write code in your Firebase listener that schedules work you want to perform on another thread. You can do this for both Android and iOS. – Doug Stevenson Apr 16 '17 at 21:59
-
@doug how do you do this for iOS? – Tom Gatward Oct 26 '20 at 13:13