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:
Aware
,BeanClassLoaderAware
,BeanFactoryAware
,DisposableBean
,FactoryBean<R2dbcMessageSource>
,InitializingBean
,Lifecycle
,Phased
,SmartLifecycle
public class R2dbcMessageSourceSpec
extends MessageSourceSpec<R2dbcMessageSourceSpec,R2dbcMessageSource>
The
MessageSourceSpec
for the R2dbcMessageSource
.- Since:
- 5.4
- Author:
- Artem Bilan
-
Field Summary
Fields inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
PARSER, target
Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean
logger
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
ModifierConstructorDescriptionprotected
R2dbcMessageSourceSpec
(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, String query) protected
R2dbcMessageSourceSpec
(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, Expression queryExpression) -
Method Summary
Modifier and TypeMethodDescriptionbindFunction
(BiFunction<DatabaseClient.GenericExecuteSpec, ?, DatabaseClient.GenericExecuteSpec> bindFunction) Set aBiFunction
which is used to bind parameters into the update query.expectSingleResult
(boolean expectSingleResult) The flag to manage which find* method to invoke onR2dbcEntityOperations
.payloadType
(Class<?> payloadType) Set the expected payload type.Configure an update query.Methods inherited from class org.springframework.integration.dsl.MessageSourceSpec
messageHeaders
Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, createInstance, destroyInstance, doGet, get, getId, getObjectType, getPhase, id, isAutoStartup, isRunning, start, stop, stop
Methods inherited from class org.springframework.beans.factory.config.AbstractFactoryBean
afterPropertiesSet, destroy, getBeanFactory, getBeanTypeConverter, getEarlySingletonInterfaces, getObject, isSingleton, setBeanClassLoader, setBeanFactory, setSingleton
-
Constructor Details
-
R2dbcMessageSourceSpec
protected R2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, String query) -
R2dbcMessageSourceSpec
protected R2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, 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(BiFunction<DatabaseClient.GenericExecuteSpec, ?, DatabaseClient.GenericExecuteSpec> bindFunction) Set aBiFunction
which is used to bind parameters into the update query.- Parameters:
bindFunction
- theBiFunction
to 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
-