Class MongoDbChangeStreamMessageProducerSpec
java.lang.Object
org.springframework.integration.dsl.IntegrationComponentSpec<S,P>
org.springframework.integration.dsl.MessageProducerSpec<MongoDbChangeStreamMessageProducerSpec,MongoDbChangeStreamMessageProducer>
org.springframework.integration.mongodb.dsl.MongoDbChangeStreamMessageProducerSpec
- All Implemented Interfaces:
org.springframework.beans.factory.DisposableBean
,org.springframework.beans.factory.FactoryBean<MongoDbChangeStreamMessageProducer>
,org.springframework.beans.factory.InitializingBean
,org.springframework.context.Lifecycle
,org.springframework.context.Phased
,org.springframework.context.SmartLifecycle
public class MongoDbChangeStreamMessageProducerSpec
extends org.springframework.integration.dsl.MessageProducerSpec<MongoDbChangeStreamMessageProducerSpec,MongoDbChangeStreamMessageProducer>
A
MessageProducerSpec
for tne MongoDbChangeStreamMessageProducer
.- Since:
- 5.3
-
Field Summary
Fields inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
logger, PARSER, target
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a builder based on an initialMongoDbChangeStreamMessageProducerSpec
. -
Method Summary
Modifier and TypeMethodDescriptioncollection
(String collection) Configure a collection to subscribe for change events.domainType
(Class<?> domainType) Configure a domain type to convert change event body into.extractBody
(boolean extractBody) Configure a flag to extract body from a change event or use event as a payload.options
(org.springframework.data.mongodb.core.ChangeStreamOptions options) Configure aChangeStreamOptions
.Methods inherited from class org.springframework.integration.dsl.MessageProducerSpec
autoStartup, errorChannel, errorChannel, errorMessageStrategy, id, observationConvention, outputChannel, outputChannel, phase, role, sendTimeout, shouldTrack
Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, afterPropertiesSet, destroy, doGet, getId, getObject, getObjectType, getPhase, isAutoStartup, isRunning, start, stop, stop
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.FactoryBean
isSingleton
-
Constructor Details
-
MongoDbChangeStreamMessageProducerSpec
Construct a builder based on an initialMongoDbChangeStreamMessageProducerSpec
.- Parameters:
producer
- theMongoDbChangeStreamMessageProducerSpec
to use.
-
-
Method Details
-
domainType
Configure a domain type to convert change event body into.- Parameters:
domainType
- the type to use.- Returns:
- the spec.
-
collection
Configure a collection to subscribe for change events.- Parameters:
collection
- the collection to use.- Returns:
- the spec.
-
options
public MongoDbChangeStreamMessageProducerSpec options(org.springframework.data.mongodb.core.ChangeStreamOptions options) Configure aChangeStreamOptions
.- Parameters:
options
- theChangeStreamOptions
to use.- Returns:
- the spec.
-
extractBody
Configure a flag to extract body from a change event or use event as a payload.- Parameters:
extractBody
- to extract body or not.- Returns:
- the spec.
-