Class R2dbcMessageSourceSpec
java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<T>
org.springframework.integration.dsl.IntegrationComponentSpec<S,H>
org.springframework.integration.dsl.MessageSourceSpec<R2dbcMessageSourceSpec,R2dbcMessageSource>
org.springframework.integration.r2dbc.dsl.R2dbcMessageSourceSpec
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanClassLoaderAware,org.springframework.beans.factory.BeanFactoryAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.FactoryBean<R2dbcMessageSource>,org.springframework.beans.factory.InitializingBean,org.springframework.context.Lifecycle,org.springframework.context.Phased,org.springframework.context.SmartLifecycle
public class R2dbcMessageSourceSpec extends org.springframework.integration.dsl.MessageSourceSpec<R2dbcMessageSourceSpec,R2dbcMessageSource>
The
MessageSourceSpec for the R2dbcMessageSource.- Since:
- 5.4
-
Field Summary
-
Constructor Summary
Constructors Modifier Constructor Description protectedR2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, java.lang.String query)protectedR2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, org.springframework.expression.Expression queryExpression) -
Method Summary
Modifier and Type Method Description R2dbcMessageSourceSpecbindFunction(java.util.function.BiFunction<org.springframework.r2dbc.core.DatabaseClient.GenericExecuteSpec,?,org.springframework.r2dbc.core.DatabaseClient.GenericExecuteSpec> bindFunction)Set aBiFunctionwhich is used to bind parameters into the update query.R2dbcMessageSourceSpecexpectSingleResult(boolean expectSingleResult)The flag to manage which find* method to invoke onR2dbcEntityOperations.R2dbcMessageSourceSpecpayloadType(java.lang.Class<?> payloadType)Set the expected payload type.R2dbcMessageSourceSpecupdateSql(java.lang.String updateSql)Configure an update query.Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, createInstance, destroyInstance, doGet, get, getId, getObjectType, getPhase, id, isAutoStartup, isRunning, start, stop, stop
-
Constructor Details
-
R2dbcMessageSourceSpec
protected R2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, java.lang.String query) -
R2dbcMessageSourceSpec
protected R2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, org.springframework.expression.Expression queryExpression)
-
-
Method Details
-
payloadType
Set the expected payload type.- Parameters:
payloadType- the class to use.- Returns:
- the spec
-
updateSql
Configure an update query.- Parameters:
updateSql- the update query string.- Returns:
- the spec
-
bindFunction
public R2dbcMessageSourceSpec bindFunction(java.util.function.BiFunction<org.springframework.r2dbc.core.DatabaseClient.GenericExecuteSpec,?,org.springframework.r2dbc.core.DatabaseClient.GenericExecuteSpec> bindFunction)Set aBiFunctionwhich is used to bind parameters into the update query.- Parameters:
bindFunction- theBiFunctionto use.- Returns:
- the spec
-
expectSingleResult
The flag to manage which find* method to invoke onR2dbcEntityOperations.- Parameters:
expectSingleResult- true if a single result is expected.- Returns:
- the spec
-