Class KafkaMessageListenerContainerSpec<K,V>
java.lang.Object
org.springframework.integration.dsl.IntegrationComponentSpec<KafkaMessageListenerContainerSpec<K,V>,org.springframework.kafka.listener.ConcurrentMessageListenerContainer<K,V>>
org.springframework.integration.kafka.dsl.KafkaMessageListenerContainerSpec<K,V>
- Type Parameters:
K
- the key type.V
- the value type.
- All Implemented Interfaces:
DisposableBean
,FactoryBean<org.springframework.kafka.listener.ConcurrentMessageListenerContainer<K,
,V>> InitializingBean
,Lifecycle
,Phased
,SmartLifecycle
public class KafkaMessageListenerContainerSpec<K,V>
extends IntegrationComponentSpec<KafkaMessageListenerContainerSpec<K,V>,org.springframework.kafka.listener.ConcurrentMessageListenerContainer<K,V>>
A helper class in the Builder pattern style to delegate options to the
ConcurrentMessageListenerContainer
.- Since:
- 5.4
- Author:
- Artem Bilan, Gary Russell
-
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
-
Method Summary
Modifier and TypeMethodDescriptionackCount
(int count) Set the number of outstanding record count after which offsets should be committed whenContainerProperties.AckMode.COUNT
orContainerProperties.AckMode.COUNT_TIME
is being used.ackMode
(org.springframework.kafka.listener.ContainerProperties.AckMode ackMode) Set the ack mode to use when auto ack (in the configuration properties) is false.ackTime
(long millis) Set the time (ms) after which outstanding offsets should be committed whenContainerProperties.AckMode.TIME
orContainerProperties.AckMode.COUNT_TIME
is being used.commitCallback
(org.apache.kafka.clients.consumer.OffsetCommitCallback commitCallback) Set the commit callback; by default a simple logging callback is used to log success at DEBUG level and failures at ERROR level.concurrency
(int concurrency) Specify a concurrency maximum number for theAbstractMessageListenerContainer
.consumerRebalanceListener
(org.apache.kafka.clients.consumer.ConsumerRebalanceListener consumerRebalanceListener) Set the user definedConsumerRebalanceListener
implementation.errorHandler
(org.springframework.kafka.listener.CommonErrorHandler errorHandler) Specify anCommonErrorHandler
for theAbstractMessageListenerContainer
.Set the group id for this container.Configure the component identifier.idleEventInterval
(Long idleEventInterval) Set the idle event interval; when set, an event is emitted if a poll returns no records and this interval has elapsed since a record was returned.listenerTaskExecutor
(AsyncTaskExecutor consumerTaskExecutor) Set the executor for threads that poll the consumer.pollTimeout
(long pollTimeout) Set the max time to block in the consumer waiting for records.shutdownTimeout
(long shutdownTimeout) Set the timeout for shutting down the container.syncCommits
(boolean syncCommits) Set whether to call consumer.commitSync() or commitAsync() when the container is responsible for commits.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
-
Method Details
-
id
Description copied from class:IntegrationComponentSpec
Configure the component identifier. Used as thebeanName
to register the bean in the application context for this component.- Overrides:
id
in classIntegrationComponentSpec<KafkaMessageListenerContainerSpec<K,
V>, org.springframework.kafka.listener.ConcurrentMessageListenerContainer<K, V>> - Parameters:
id
- the id.- Returns:
- the spec.
-
concurrency
Specify a concurrency maximum number for theAbstractMessageListenerContainer
.- Parameters:
concurrency
- the concurrency maximum number.- Returns:
- the spec.
- See Also:
-
errorHandler
public KafkaMessageListenerContainerSpec<K,V> errorHandler(org.springframework.kafka.listener.CommonErrorHandler errorHandler) Specify anCommonErrorHandler
for theAbstractMessageListenerContainer
.- Parameters:
errorHandler
- theCommonErrorHandler
.- Returns:
- the spec.
- Since:
- 6.0
- See Also:
-
ackMode
public KafkaMessageListenerContainerSpec<K,V> ackMode(org.springframework.kafka.listener.ContainerProperties.AckMode ackMode) Set the ack mode to use when auto ack (in the configuration properties) is false.- RECORD: Ack after each record has been passed to the listener.
- BATCH: Ack after each batch of records received from the consumer has been passed to the listener
- TIME: Ack after this number of milliseconds; (should be greater than
#setPollTimeout(long) pollTimeout
. - COUNT: Ack after at least this number of records have been received
- MANUAL: Listener is responsible for acking - use a
AcknowledgingMessageListener
.
- Parameters:
ackMode
- theContainerProperties.AckMode
; default BATCH.- Returns:
- the spec.
- See Also:
-
pollTimeout
Set the max time to block in the consumer waiting for records.- Parameters:
pollTimeout
- the timeout in ms; default 1000.- Returns:
- the spec.
- See Also:
-
ackCount
Set the number of outstanding record count after which offsets should be committed whenContainerProperties.AckMode.COUNT
orContainerProperties.AckMode.COUNT_TIME
is being used.- Parameters:
count
- the count- Returns:
- the spec.
- See Also:
-
ackTime
Set the time (ms) after which outstanding offsets should be committed whenContainerProperties.AckMode.TIME
orContainerProperties.AckMode.COUNT_TIME
is being used. Should be larger than zero.- Parameters:
millis
- the time- Returns:
- the spec.
- See Also:
-
listenerTaskExecutor
public KafkaMessageListenerContainerSpec<K,V> listenerTaskExecutor(AsyncTaskExecutor consumerTaskExecutor) Set the executor for threads that poll the consumer.- Parameters:
consumerTaskExecutor
- the executor- Returns:
- the spec.
- See Also:
-
shutdownTimeout
Set the timeout for shutting down the container. This is the maximum amount of time that the invocation to#stop(Runnable)
will block for, before returning.- Parameters:
shutdownTimeout
- the shutdown timeout.- Returns:
- the spec.
- See Also:
-
consumerRebalanceListener
public KafkaMessageListenerContainerSpec<K,V> consumerRebalanceListener(org.apache.kafka.clients.consumer.ConsumerRebalanceListener consumerRebalanceListener) Set the user definedConsumerRebalanceListener
implementation.- Parameters:
consumerRebalanceListener
- theConsumerRebalanceListener
instance- Returns:
- the spec.
- See Also:
-
commitCallback
public KafkaMessageListenerContainerSpec<K,V> commitCallback(org.apache.kafka.clients.consumer.OffsetCommitCallback commitCallback) Set the commit callback; by default a simple logging callback is used to log success at DEBUG level and failures at ERROR level.- Parameters:
commitCallback
- the callback.- Returns:
- the spec.
- See Also:
-
syncCommits
-
idleEventInterval
Set the idle event interval; when set, an event is emitted if a poll returns no records and this interval has elapsed since a record was returned.- Parameters:
idleEventInterval
- the interval.- Returns:
- the spec.
- See Also:
-
groupId
Set the group id for this container. Overrides anygroup.id
property provided by the consumer factory configuration.- Parameters:
groupId
- the group id.- Returns:
- the spec.
- See Also:
-