public interface Result
| Modifier and Type | Method and Description |
|---|---|
org.reactivestreams.Publisher<Integer> |
getRowsUpdated()
Returns the number of rows updated by a query against a database.
|
<T> org.reactivestreams.Publisher<T> |
map(BiFunction<Row,RowMetadata,? extends T> f)
Returns a mapping of the rows that are the results of a query against a database.
|
org.reactivestreams.Publisher<Integer> getRowsUpdated()
<T> org.reactivestreams.Publisher<T> map(BiFunction<Row,RowMetadata,? extends T> f)
T - the type of the mapped valuef - the BiFunction that maps a Row and RowMetadata to a valueIllegalArgumentException - if f is nullCopyright © 2019. All rights reserved.