TResult
- The type of the result.public interface MapReduceObservable<TResult> extends MongoObservable<TResult>
Modifier and Type | Method and Description |
---|---|
MapReduceObservable<TResult> |
action(com.mongodb.client.model.MapReduceAction action)
Specify the
MapReduceAction to be used when writing to a collection. |
MapReduceObservable<TResult> |
bypassDocumentValidation(Boolean bypassDocumentValidation)
Sets the bypass document level validation flag.
|
MapReduceObservable<TResult> |
collation(com.mongodb.client.model.Collation collation)
Sets the collation options
|
MapReduceObservable<TResult> |
collectionName(String collectionName)
Sets the collectionName for the output of the MapReduce
|
MapReduceObservable<TResult> |
databaseName(String databaseName)
Sets the name of the database to output into.
|
MapReduceObservable<TResult> |
filter(org.bson.conversions.Bson filter)
Sets the query filter to apply to the query.
|
MapReduceObservable<TResult> |
finalizeFunction(String finalizeFunction)
Sets the JavaScript function that follows the reduce method and modifies the output.
|
MapReduceObservable<TResult> |
jsMode(boolean jsMode)
Sets the flag that specifies whether to convert intermediate data into BSON format between the execution of the map and reduce
functions.
|
MapReduceObservable<TResult> |
limit(int limit)
Sets the limit to apply.
|
MapReduceObservable<TResult> |
maxTime(long maxTime,
TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
|
MapReduceObservable<TResult> |
nonAtomic(boolean nonAtomic)
Sets if the post-processing step will prevent MongoDB from locking the database.
|
MapReduceObservable<TResult> |
scope(org.bson.conversions.Bson scope)
Sets the global variables that are accessible in the map, reduce and finalize functions.
|
MapReduceObservable<TResult> |
sharded(boolean sharded)
Sets if the output database is sharded
|
MapReduceObservable<TResult> |
sort(org.bson.conversions.Bson sort)
Sets the sort criteria to apply to the query.
|
rx.Observable<Success> |
toCollection()
Aggregates documents to a collection according to the specified map-reduce function with the given options, which must specify a
non-inline result.
|
MapReduceObservable<TResult> |
verbose(boolean verbose)
Sets whether to include the timing information in the result information.
|
subscribe, toObservable
MapReduceObservable<TResult> collectionName(String collectionName)
The default action is replace the collection if it exists, to change this use action(com.mongodb.client.model.MapReduceAction)
.
collectionName
- the name of the collection that you want the map-reduce operation to write its output.MapReduceObservable<TResult> finalizeFunction(String finalizeFunction)
finalizeFunction
- the JavaScript function that follows the reduce method and modifies the output.MapReduceObservable<TResult> scope(org.bson.conversions.Bson scope)
scope
- the global variables that are accessible in the map, reduce and finalize functions.MapReduceObservable<TResult> sort(org.bson.conversions.Bson sort)
sort
- the sort criteria, which may be null.MapReduceObservable<TResult> filter(org.bson.conversions.Bson filter)
filter
- the filter to apply to the query.MapReduceObservable<TResult> limit(int limit)
limit
- the limit, which may be nullMapReduceObservable<TResult> jsMode(boolean jsMode)
jsMode
- the flag that specifies whether to convert intermediate data into BSON format between the execution of the map and
reduce functionsMapReduceObservable<TResult> verbose(boolean verbose)
verbose
- whether to include the timing information in the result information.MapReduceObservable<TResult> maxTime(long maxTime, TimeUnit timeUnit)
maxTime
- the max timetimeUnit
- the time unit, which may not be nullMapReduceObservable<TResult> action(com.mongodb.client.model.MapReduceAction action)
MapReduceAction
to be used when writing to a collection.action
- an MapReduceAction
to perform on the collectionMapReduceObservable<TResult> databaseName(String databaseName)
databaseName
- the name of the database to output into.MapReduceObservable<TResult> sharded(boolean sharded)
sharded
- if the output database is shardedMapReduceObservable<TResult> nonAtomic(boolean nonAtomic)
MapReduceAction.MERGE
or MapReduceAction.REDUCE
actions.nonAtomic
- if the post-processing step will prevent MongoDB from locking the database.MapReduceObservable<TResult> bypassDocumentValidation(Boolean bypassDocumentValidation)
Note: This only applies when an $out stage is specified
.rx.Observable<Success> toCollection()
MapReduceObservable<TResult> collation(com.mongodb.client.model.Collation collation)
A null value represents the server default.
collation
- the collation options to use