| Package | Description |
|---|---|
| com.mongodb.operation |
The core of the MongoDB driver works via operations, using the command pattern.
|
| Class and Description |
|---|
| AggregateOperation
An operation that executes an aggregation query.
|
| AggregateToCollectionOperation
An operation that executes an aggregation that writes its results to a collection (which is what makes this a write operation rather than
a read operation).
|
| AsyncReadOperation
An operation which asynchronously reads from a MongoDB server.
|
| AsyncWriteOperation
An operation which asynchronously writes to a MongoDB server.
|
| BaseWriteOperation
Abstract base class for write operations.
|
| BatchCursor
MongoDB returns query results as batches, and this interface provideds an iterator over those batches.
|
| CountOperation
An operation that executes a count.
|
| CreateCollectionOperation
An operation to create a collection
|
| DistinctOperation
Finds the distinct values for a specified field across a single collection.
|
| FindAndDeleteOperation
An operation that atomically finds and deletes a single document.
|
| FindAndReplaceOperation
An operation that atomically finds and replaces a single document.
|
| FindAndUpdateOperation
An operation that atomically finds and updates a single document.
|
| FindOperation
An operation that queries a collection using the provided criteria.
|
| GroupOperation
Groups documents in a collection by the specified key and performs simple aggregation functions, such as computing counts and sums.
|
| ListCollectionsOperation
An operation that provides a cursor allowing iteration through the metadata of all the collections in a database.
|
| ListDatabasesOperation
An operation that provides a cursor allowing iteration through the metadata of all the databases for a MongoClient.
|
| ListIndexesOperation
An operation that lists the indexes that have been created on a collection.
|
| MapReduceAsyncBatchCursor
Represents the future results of a map-reduce operation as a cursor.
|
| MapReduceBatchCursor
Represents the results of a map-reduce operation as a cursor.
|
| MapReduceStatistics
Common statistics returned by running all types of map-reduce operations.
|
| MapReduceToCollectionOperation
Operation that runs a Map Reduce against a MongoDB instance.
|
| MapReduceWithInlineResultsOperation
Operation that runs a Map Reduce against a MongoDB instance.
|
| MixedBulkWriteOperation
An operation to execute a series of write operations in bulk.
|
| OrderBy
Enumeration of possible index orders
|
| ParallelCollectionScanOperation
Return a list of cursors over the collection that can be used to scan it in parallel.
|
| ReadOperation
An operation that reads from a MongoDB server.
|
| RenameCollectionOperation
An operation that renames the given collection to the new name.
|
| WriteOperation
An operation which writes to a MongoDB server.
|
Copyright © 2016. All Rights Reserved.