io.realm.mongodb
Implemented interfaces:
RealmResultTask es una versión específica de RealmAsyncTask que proporciona un mecanismo para trabajar con operaciones asincrónicas realizadas en MongoDB Realm que producen un resultado.
Esta clase ofrece tanto bloqueo (get ) y llamadas a métodos no bloqueantes (getAsync ).
Resumen del método
Modificador y Tipo | Método y descripción |
|---|---|
public T | get () Blocks the thread on which the call is made until the result of the operation arrives. |
public void | Provides a way to subscribe to asynchronous operations via a callback, which handles both results and errors. |
Inherited Methods
Detalle del método
Obtener
public T get () |
|---|
Blocks the thread on which the call is made until the result of the operation arrives. Devuelve the result of the operation executed by this task. |
getAsync
Provides a way to subscribe to asynchronous operations via a callback, which handles both results and errors. Parámetros
Throws |