Class R2dbcMessageSourceSpec
java.lang.Object
org.springframework.integration.dsl.IntegrationComponentSpec<R2dbcMessageSourceSpec, R2dbcMessageSource>
org.springframework.integration.dsl.MessageSourceSpec<R2dbcMessageSourceSpec, R2dbcMessageSource>
org.springframework.integration.r2dbc.dsl.R2dbcMessageSourceSpec
- All Implemented Interfaces:
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 IntegrationComponentSpec
logger, PARSER, targetFields inherited from interface FactoryBean
OBJECT_TYPE_ATTRIBUTEFields inherited from interface SmartLifecycle
DEFAULT_PHASE -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedR2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, String query) protectedR2dbcMessageSourceSpec(org.springframework.data.r2dbc.core.R2dbcEntityOperations r2dbcEntityOperations, Expression queryExpression) -
Method Summary
Modifier and TypeMethodDescriptionbindFunction(BiFunction<DatabaseClient.GenericExecuteSpec, ?, DatabaseClient.GenericExecuteSpec> bindFunction) Set aBiFunctionwhich 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 MessageSourceSpec
messageHeadersMethods inherited from class IntegrationComponentSpec
_this, afterPropertiesSet, destroy, doGet, getId, getObject, getObjectType, getPhase, id, isAutoStartup, isRunning, start, stop, stopMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface FactoryBean
isSingletonMethods inherited from interface SmartLifecycle
isPauseable
-
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 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
-