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
ConstructorDescriptionMapReduceResults
(List<T> mappedResults, org.bson.Document rawResults) Deprecated.Creates a newMapReduceResults
from the given mapped results and the raw one. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Deprecated.org.bson.Document
Deprecated.Deprecated.iterator()
Deprecated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
MapReduceResults
Deprecated.Creates a newMapReduceResults
from 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
.