Uses of Class
org.springframework.data.r2dbc.mapping.OutboundRow
Packages that use 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
Methods in org.springframework.data.r2dbc.convert with parameters of type OutboundRowModifier and TypeMethodDescriptionvoid
MappingR2dbcConverter.write
(Object source, OutboundRow sink) -
Uses of OutboundRow in org.springframework.data.r2dbc.core
Methods in org.springframework.data.r2dbc.core that return OutboundRowModifier and TypeMethodDescriptionDefaultReactiveDataAccessStrategy.getOutboundRow
(Object object) ReactiveDataAccessStrategy.getOutboundRow
(Object object) Deprecated.Returns aOutboundRow
that maps column names to aParameter
value.Methods in org.springframework.data.r2dbc.core with parameters of type OutboundRowModifier 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
Methods in org.springframework.data.r2dbc.mapping that return OutboundRowModifier 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
Methods in org.springframework.data.r2dbc.mapping.event with parameters of type OutboundRowModifier 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.