Interface RealmAsyncTask
Atlas Device SDKs are deprecated. Refer to the deprecation page for details.
io.realm
Represents a pending asynchronous Realm task, like asynchronous transactions.Users are responsible for maintaining a reference to RealmAsyncTask
in order to call cancel() in case of a configuration change for example (to avoid memory leak, as the transaction will post the result to the caller's thread callback).
Method Summary
Modifier and Type | Method and Description |
---|---|
public void | cancel () Attempts to cancel execution of this transaction (if it hasn't already completed or previously cancelled). |
public boolean | isCancelled () Checks whether an attempt to cancel the transaction was performed. |
Method Detail
cancel
public void cancel () |
---|
Attempts to cancel execution of this transaction (if it hasn't already completed or previously cancelled). |
isCancelled
public boolean isCancelled () |
---|
Checks whether an attempt to cancel the transaction was performed. Returns
|