Docs Menu

Docs HomeDevelop ApplicationsAtlas Device SDKs

Class MongoIterable

On this page

  • io.realm.mongodb.mongo.iterable
  • Method Summary
  • Inherited Methods
  • Method Detail
  • first
  • iterator
io.realm.mongodb.mongo.iterable.MongoIterable

The MongoIterable is the results from an operation, such as a find() or an aggregate() query.

This class somewhat mimics the behavior of an Iterable but given its results are obtained asynchronously, its values are wrapped inside a Task .

Modifier and Type
Method and Description
public RealmResultTask

Helper to return the first item in the iterator or null.

Returns a cursor of the operation represented by this iterable.

  • Methods inherited from class java.lang.Object : getClass , hashCode , equals , clone , toString , notify , notifyAll , wait , wait , wait , finalize

Helper to return the first item in the iterator or null.The result is wrapped in a Task since the iterator should be capable of asynchronously retrieve documents from the server.

Returns

a task containing the first item or null.

Returns a cursor of the operation represented by this iterable.The result is wrapped in a Task since the iterator should be capable of asynchronously retrieve documents from the server.

Returns

an asynchronous task with cursor of the operation represented by this iterable.

← Class MongoCursor