MapReduceIterable<TResult> |
MapReduceIterable.action(MapReduceAction action) |
Deprecated.
Specify the MapReduceAction to be used when writing to a collection.
|
MapReduceIterable<TResult> |
MapReduceIterable.batchSize(int batchSize) |
Deprecated.
Sets the number of documents to return per batch.
|
MapReduceIterable<TResult> |
MapReduceIterable.bypassDocumentValidation(Boolean bypassDocumentValidation) |
Deprecated.
Sets the bypass document level validation flag.
|
MapReduceIterable<TResult> |
MapReduceIterable.collation(Collation collation) |
Deprecated.
Sets the collation options
|
MapReduceIterable<TResult> |
MapReduceIterable.collectionName(String collectionName) |
Deprecated.
Sets the collectionName for the output of the MapReduce
|
MapReduceIterable<TResult> |
MapReduceIterable.databaseName(String databaseName) |
Deprecated.
Sets the name of the database to output into.
|
MapReduceIterable<TResult> |
MapReduceIterable.filter(Bson filter) |
Deprecated.
Sets the query filter to apply to the query.
|
MapReduceIterable<TResult> |
MapReduceIterable.finalizeFunction(String finalizeFunction) |
Deprecated.
Sets the JavaScript function that follows the reduce method and modifies the output.
|
MapReduceIterable<TResult> |
MapReduceIterable.jsMode(boolean jsMode) |
Deprecated.
Sets the flag that specifies whether to convert intermediate data into BSON format between the execution of the map and reduce
functions.
|
MapReduceIterable<TResult> |
MapReduceIterable.limit(int limit) |
Deprecated.
Sets the limit to apply.
|
MapReduceIterable<TDocument> |
MongoCollection.mapReduce(ClientSession clientSession,
String mapFunction,
String reduceFunction) |
Deprecated.
Aggregates documents according to the specified map-reduce function.
|
<TResult> MapReduceIterable<TResult> |
MongoCollection.mapReduce(ClientSession clientSession,
String mapFunction,
String reduceFunction,
Class<TResult> resultClass) |
Deprecated.
Aggregates documents according to the specified map-reduce function.
|
MapReduceIterable<TDocument> |
MongoCollection.mapReduce(String mapFunction,
String reduceFunction) |
Deprecated.
Aggregates documents according to the specified map-reduce function.
|
<TResult> MapReduceIterable<TResult> |
MongoCollection.mapReduce(String mapFunction,
String reduceFunction,
Class<TResult> resultClass) |
Deprecated.
Aggregates documents according to the specified map-reduce function.
|
MapReduceIterable<TResult> |
MapReduceIterable.maxTime(long maxTime,
TimeUnit timeUnit) |
Deprecated.
Sets the maximum execution time on the server for this operation.
|
MapReduceIterable<TResult> |
MapReduceIterable.nonAtomic(boolean nonAtomic) |
Deprecated.
Sets if the post-processing step will prevent MongoDB from locking the database.
|
MapReduceIterable<TResult> |
MapReduceIterable.scope(Bson scope) |
Deprecated.
Sets the global variables that are accessible in the map, reduce and finalize functions.
|
MapReduceIterable<TResult> |
MapReduceIterable.sharded(boolean sharded) |
Deprecated.
Sets if the output database is sharded
|
MapReduceIterable<TResult> |
MapReduceIterable.sort(Bson sort) |
Deprecated.
Sets the sort criteria to apply to the query.
|
MapReduceIterable<TResult> |
MapReduceIterable.verbose(boolean verbose) |
Deprecated.
Sets whether to include the timing information in the result information.
|