Uses of Interface
com.mongodb.async.client.MongoIterable
-
Packages that use MongoIterable Package Description com.mongodb.async.client This packages contains classes for the new async clientcom.mongodb.async.client.gridfs Contains the classes for supporting MongoDB's specification for storing very large files, GridFS. -
-
Uses of MongoIterable in com.mongodb.async.client
Subinterfaces of MongoIterable in com.mongodb.async.client Modifier and Type Interface Description interface
AggregateIterable<TResult>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
ChangeStreamIterable<TResult>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
DistinctIterable<TResult>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
FindIterable<T>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
ListCollectionsIterable<TResult>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
ListDatabasesIterable<T>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
ListIndexesIterable<TResult>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)interface
MapReduceIterable<TResult>
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)Methods in com.mongodb.async.client that return MongoIterable Modifier and Type Method Description MongoIterable<TResult>
MongoIterable. batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.MongoIterable<String>
MongoDatabase. listCollectionNames()
Deprecated.Gets the names of all the collections in this database.MongoIterable<String>
MongoDatabase. listCollectionNames(ClientSession clientSession)
Deprecated.Gets the names of all the collections in this database.MongoIterable<String>
MongoClient. listDatabaseNames()
Deprecated.Get a list of the database namesMongoIterable<String>
MongoClient. listDatabaseNames(ClientSession clientSession)
Deprecated.Get a list of the database names<U> MongoIterable<U>
MongoIterable. map(Function<TResult,U> mapper)
Deprecated.Maps this iterable from the source document type to the target document type.<TDocument>
MongoIterable<TDocument>ChangeStreamIterable. withDocumentClass(Class<TDocument> clazz)
Deprecated.Returns aMongoIterable
containing the results of the change stream based on the document class provided.Methods in com.mongodb.async.client with parameters of type MongoIterable Modifier and Type Method Description static <TResult> Observable<TResult>
Observables. observe(MongoIterable<TResult> mongoIterable)
Deprecated.Convert aMongoIterable
into anObservable
. -
Uses of MongoIterable in com.mongodb.async.client.gridfs
Subinterfaces of MongoIterable in com.mongodb.async.client.gridfs Modifier and Type Interface Description interface
GridFSFindIterable
Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)
-