Interface ReactiveAggregationOperation.TerminatingAggregationOperation<T>
- Enclosing interface:
ReactiveAggregationOperation
public static interface ReactiveAggregationOperation.TerminatingAggregationOperation<T>
Trigger execution by calling one of the terminating methods.
- Since:
- 2.0
- Author:
- Mark Paluch, Christoph Strobl
-
Method Summary
Modifier and TypeMethodDescriptionall()Apply pipeline operations as specified and stream all matching elements.map(QueryResultConverter<? super T, ? extends R> converter) Map the query result to a different type usingQueryResultConverter.
-
Method Details
-
map
@Contract("_ -> new") <R> ReactiveAggregationOperation.TerminatingAggregationOperation<R> map(QueryResultConverter<? super T, ? extends R> converter) Map the query result to a different type usingQueryResultConverter.- Type Parameters:
R-typeof the result.- Parameters:
converter- the converter, must not be null.- Returns:
- new instance of
ExecutableFindOperation.TerminatingFindNear. - Throws:
IllegalArgumentException- ifconverteris null.- Since:
- 5.0
-
all
-