Interface ExecutableMapReduceOperation.MapReduceWithQuery<T>
- All Superinterfaces:
ExecutableMapReduceOperation.TerminatingMapReduce<T>
- All Known Subinterfaces:
ExecutableMapReduceOperation.ExecutableMapReduce<T>
,ExecutableMapReduceOperation.MapReduceWithCollection<T>
,ExecutableMapReduceOperation.MapReduceWithProjection<T>
- Enclosing interface:
- ExecutableMapReduceOperation
public static interface ExecutableMapReduceOperation.MapReduceWithQuery<T>
extends ExecutableMapReduceOperation.TerminatingMapReduce<T>
Input document filter query (Optional).
- Since:
- 2.1
- Author:
- Christoph Strobl
-
Method Summary
Modifier and TypeMethodDescriptionmatching
(CriteriaDefinition criteria) Set the filtercriteria
to be used.Set the filter query to be used.Methods inherited from interface org.springframework.data.mongodb.core.ExecutableMapReduceOperation.TerminatingMapReduce
all
-
Method Details
-
matching
Set the filter query to be used.- Parameters:
query
- must not be null.- Returns:
- new instance of
ExecutableMapReduceOperation.TerminatingMapReduce
. - Throws:
IllegalArgumentException
- if query is null.
-
matching
Set the filtercriteria
to be used.- Parameters:
criteria
- must not be null.- Returns:
- new instance of
ExecutableMapReduceOperation.TerminatingMapReduce
. - Throws:
IllegalArgumentException
- if query is null.- Since:
- 3.0
-