Package | Description |
---|---|
com.mongodb.async.client |
This packages contains classes for the new async client
|
com.mongodb.async.client.gridfs |
Contains the classes for supporting MongoDB's specification for storing very large files, GridFS.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AggregateIterable<TResult>
Iterable for aggregate.
|
interface |
DistinctIterable<TResult>
Iterable for distinct.
|
interface |
FindIterable<T>
Iterable for find.
|
interface |
ListCollectionsIterable<TResult>
Iterable for ListCollections.
|
interface |
ListDatabasesIterable<T>
Iterable for ListDatabases.
|
interface |
ListIndexesIterable<TResult>
Iterable for ListIndexes.
|
interface |
MapReduceIterable<TResult>
Iterable for map reduce.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
AggregateIterableImpl<TDocument,TResult> |
(package private) class |
AwaitingWriteOperationIterable<T,W> |
(package private) class |
DistinctIterableImpl<TDocument,TResult> |
(package private) class |
FindIterableImpl<TDocument,TResult> |
(package private) class |
ListCollectionsIterableImpl<TResult> |
(package private) class |
ListDatabasesIterableImpl<TResult> |
(package private) class |
ListIndexesIterableImpl<TResult> |
(package private) class |
MappingIterable<T,U> |
(package private) class |
MapReduceIterableImpl<TDocument,TResult> |
(package private) class |
OperationIterable<T> |
Modifier and Type | Field and Description |
---|---|
private MongoIterable<T> |
AwaitingWriteOperationIterable.delegated |
private MongoIterable<T> |
MappingIterable.iterable |
private MongoIterable<TResult> |
MongoIterableSubscription.mongoIterable |
Modifier and Type | Method and Description |
---|---|
MongoIterable<TResult> |
MongoIterable.batchSize(int batchSize)
Sets the number of documents to return per batch.
|
MongoIterable<U> |
MappingIterable.batchSize(int batchSize) |
(package private) MongoIterable<TResult> |
MapReduceIterableImpl.execute() |
private MongoIterable<TResult> |
ListIndexesIterableImpl.execute() |
private MongoIterable<TResult> |
ListDatabasesIterableImpl.execute() |
private MongoIterable<TResult> |
ListCollectionsIterableImpl.execute() |
private MongoIterable<TResult> |
FindIterableImpl.execute() |
private MongoIterable<TResult> |
DistinctIterableImpl.execute() |
private MongoIterable<TResult> |
AggregateIterableImpl.execute() |
private MongoIterable<TResult> |
FindIterableImpl.execute(FindOperation<TResult> operation) |
private MongoIterable<TResult> |
ListCollectionsIterableImpl.execute(ListCollectionsOperation<TResult> operation) |
private MongoIterable<TResult> |
ListDatabasesIterableImpl.execute(ListDatabasesOperation<TResult> operation) |
private MongoIterable<TResult> |
ListIndexesIterableImpl.execute(ListIndexesOperation<TResult> operation) |
MongoIterable<java.lang.String> |
MongoDatabaseImpl.listCollectionNames() |
MongoIterable<java.lang.String> |
MongoDatabase.listCollectionNames()
Gets the names of all the collections in this database.
|
MongoIterable<java.lang.String> |
MongoClientImpl.listDatabaseNames() |
MongoIterable<java.lang.String> |
MongoClient.listDatabaseNames()
Get a list of the database names
|
<U> MongoIterable<U> |
MongoIterable.map(Function<TResult,U> mapper)
Maps this iterable from the source document type to the target document type.
|
<U> MongoIterable<U> |
MapReduceIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
ListIndexesIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
ListDatabasesIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
ListCollectionsIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
FindIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
DistinctIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
AggregateIterableImpl.map(Function<TResult,U> mapper) |
<U> MongoIterable<U> |
OperationIterable.map(Function<T,U> mapper) |
<U> MongoIterable<U> |
AwaitingWriteOperationIterable.map(Function<T,U> mapper) |
<V> MongoIterable<V> |
MappingIterable.map(Function<U,V> mapper) |
Modifier and Type | Method and Description |
---|---|
static <TResult> Observable<TResult> |
Observables.observe(MongoIterable<TResult> mongoIterable)
Convert a
MongoIterable into an Observable . |
Constructor and Description |
---|
AwaitingWriteOperationIterable(AsyncWriteOperation<W> writeOperation,
AsyncOperationExecutor executor,
MongoIterable<T> delegated) |
MappingIterable(MongoIterable<T> iterable,
Function<T,U> mapper) |
MongoIterableSubscription(MongoIterable<TResult> mongoIterable,
Observer<? super TResult> observer) |
Modifier and Type | Interface and Description |
---|---|
interface |
GridFSFindIterable
Iterable for the GridFS Files Collection.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
GridFSFindIterableImpl |
Modifier and Type | Method and Description |
---|---|
<U> MongoIterable<U> |
GridFSFindIterableImpl.map(Function<GridFSFile,U> mapper) |