Uses of Interface
org.jdbi.v3.core.result.RowReducer
Package
Description
result
provides the streaming interface that reads rows from JDBC
and drives the mapper
and collector
processes to
produce results.-
Uses of RowReducer in org.jdbi.v3.core.result
Modifier and TypeInterfaceDescriptioninterface
A row reducer that usesLinkedHashMap
(which preserves insertion order) as a result container, and returnsmap.values().stream()
as the final result.Modifier and TypeMethodDescription<C,
R> Stream <R> BatchResultBearing.reduceRows
(RowReducer<C, R> rowReducer) default <C,
R> Stream <R> ResultBearing.reduceRows
(RowReducer<C, R> rowReducer) Reduce the result rows using the given row reducer.