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
Modifier and TypeMethodDescriptionDeprecated.Deprecated.org.bson.DocumentDeprecated.Deprecated.iterator()Deprecated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.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
org.springframework.data.mongodb.core.aggregation.