Uses of Class
org.springframework.data.r2dbc.mapping.OutboundRow
Package
Description
R2DBC-specific conversion and converter implementations.
Core domain types around DatabaseClient.
Domain objects for R2DBC.
Mapping event callback infrastructure for the R2DBC row-to-object mapping subsystem.
-
Uses of OutboundRow in org.springframework.data.r2dbc.convert
Modifier and TypeMethodDescriptionvoid
MappingR2dbcConverter.write
(Object source, OutboundRow sink) -
Uses of OutboundRow in org.springframework.data.r2dbc.core
Modifier and TypeMethodDescriptionDefaultReactiveDataAccessStrategy.getOutboundRow
(Object object) ReactiveDataAccessStrategy.getOutboundRow
(Object object) Deprecated.Returns aOutboundRow
that maps column names to aParameter
value.Modifier and TypeMethodDescriptionprotected <T> reactor.core.publisher.Mono<T>
R2dbcEntityTemplate.maybeCallAfterSave
(T object, OutboundRow row, SqlIdentifier table) protected <T> reactor.core.publisher.Mono<T>
R2dbcEntityTemplate.maybeCallBeforeSave
(T object, OutboundRow row, SqlIdentifier table) -
Uses of OutboundRow in org.springframework.data.r2dbc.mapping
Modifier and TypeMethodDescriptionPut the given key/value pair into thisOutboundRow
and return this.OutboundRow.append
(SqlIdentifier key, Parameter value) Put the given key/value pair into thisOutboundRow
and return this.protected OutboundRow
OutboundRow.clone()
-
Uses of OutboundRow in org.springframework.data.r2dbc.mapping.event
Modifier and TypeMethodDescriptionorg.reactivestreams.Publisher<T>
AfterSaveCallback.onAfterSave
(T entity, OutboundRow outboundRow, SqlIdentifier table) Entity callback method invoked after a domain object is saved.org.reactivestreams.Publisher<T>
BeforeSaveCallback.onBeforeSave
(T entity, OutboundRow row, SqlIdentifier table) Entity callback method invoked before a domain object is saved.