You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Serialization is being done on main queue instead of background queue which is causing the app to become unresponsive in case of large amount of data in request/response.
Is there anyway we can offload the serialization to background?
The text was updated successfully, but these errors were encountered:
Hey @SandeepAggarwal. The reason of that was serialisation and mapping into database objects such a "Realm" or "CoreData". It requires special treatment, and doing all on main thread avoids crashes.
The Serialization is being done on main queue instead of background queue which is causing the app to become unresponsive in case of large amount of data in request/response.
Is there anyway we can offload the serialization to background?
The text was updated successfully, but these errors were encountered: