Package com.mongodb.operation
Interface MapReduceAsyncBatchCursor<T>
-
- Type Parameters:
T
- the type of each result, usually some sort of document.
- All Superinterfaces:
AsyncBatchCursor<T>
,AutoCloseable
,Closeable
@Deprecated public interface MapReduceAsyncBatchCursor<T> extends AsyncBatchCursor<T>
Deprecated.Represents the future results of a map-reduce operation as a cursor. Users can iterate over the results and additionally get relevant statistics about the operation.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description MapReduceStatistics
getStatistics()
Deprecated.Get the statistics for this map-reduce operation-
Methods inherited from interface com.mongodb.async.AsyncBatchCursor
close, getBatchSize, isClosed, next, setBatchSize, tryNext
-
-
-
-
Method Detail
-
getStatistics
MapReduceStatistics getStatistics()
Deprecated.Get the statistics for this map-reduce operation- Returns:
- the statistics
-
-