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
This means the Realm will not be opened before any relevant server data has been fully downloaded. In cases of poor/no network this can, however, take quite a lot of time. In those cases, a user might want to abort and do something else.
The download will react to either calling Thread.interrupt() or RealmAsyncTask.cancel(), but it is rather manual and annoying to have to implement timing yourself.
Instead, we should make it possible to define a timeout parameter that will abort automatically, like:
When using synchronized Realms you can specify
This means the Realm will not be opened before any relevant server data has been fully downloaded. In cases of poor/no network this can, however, take quite a lot of time. In those cases, a user might want to abort and do something else.
The download will react to either calling
Thread.interrupt()
orRealmAsyncTask.cancel()
, but it is rather manual and annoying to have to implement timing yourself.Instead, we should make it possible to define a timeout parameter that will abort automatically, like:
This is also related to #6073
The text was updated successfully, but these errors were encountered: