Class MapReduceResults<T>
java.lang.Object
org.springframework.data.mongodb.core.mapreduce.MapReduceResults<T>
- Type Parameters:
T- The class in which the results are mapped onto, accessible via an iterator.
- All Implemented Interfaces:
Iterable<T>
Deprecated.
Collects the results of performing a MapReduce operations.
- Author:
- Mark Pollack, Oliver Gierke, Christoph Strobl, Mark Paluch
-
Constructor Summary
ConstructorsConstructorDescriptionMapReduceResults(List<T> mappedResults, org.bson.Document rawResults) Deprecated.Creates a newMapReduceResultsfrom the given mapped results and the raw one. -
Method Summary
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Iterable
forEach, spliterator
-
Constructor Details
-
MapReduceResults
Deprecated.Creates a newMapReduceResultsfrom the given mapped results and the raw one.- Parameters:
mappedResults- must not be null.rawResults- must not be null.
-
-
Method Details
-
iterator
-
getTiming
Deprecated. -
getCounts
Deprecated. -
getOutputCollection
Deprecated. -
getRawResults
public @Nullable org.bson.Document getRawResults()Deprecated.
-
org.springframework.data.mongodb.core.aggregation.