Class KafkaMessageSource.KafkaAckCallback<K,V>
java.lang.Object
org.springframework.integration.kafka.inbound.KafkaMessageSource.KafkaAckCallback<K,V>
- Type Parameters:
K
- the key type.V
- the value type.
- All Implemented Interfaces:
org.springframework.integration.acks.AcknowledgmentCallback
,org.springframework.integration.acks.SimpleAcknowledgment
,org.springframework.kafka.support.Acknowledgment
- Enclosing class:
- KafkaMessageSource<K,V>
public static class KafkaMessageSource.KafkaAckCallback<K,V>
extends java.lang.Object
implements org.springframework.integration.acks.AcknowledgmentCallback, org.springframework.kafka.support.Acknowledgment
AcknowledgmentCallback for Kafka.
-
Nested Class Summary
-
Constructor Summary
Constructors Constructor Description KafkaAckCallback(KafkaMessageSource.KafkaAckInfo<K,V> ackInfo, org.springframework.kafka.listener.ConsumerProperties consumerProperties)
Construct an instance with the provided properties. -
Method Summary
Modifier and Type Method Description void
acknowledge()
void
acknowledge(org.springframework.integration.acks.AcknowledgmentCallback.Status status)
boolean
isAcknowledged()
boolean
isAutoAck()
void
noAutoAck()
-
Constructor Details
-
KafkaAckCallback
public KafkaAckCallback(KafkaMessageSource.KafkaAckInfo<K,V> ackInfo, @Nullable org.springframework.kafka.listener.ConsumerProperties consumerProperties)Construct an instance with the provided properties.- Parameters:
ackInfo
- the ack info.consumerProperties
- the consumer properties - only commit-related properties are used.
-
-
Method Details
-
acknowledge
public void acknowledge(org.springframework.integration.acks.AcknowledgmentCallback.Status status)- Specified by:
acknowledge
in interfaceorg.springframework.integration.acks.AcknowledgmentCallback
-
isAcknowledged
public boolean isAcknowledged()- Specified by:
isAcknowledged
in interfaceorg.springframework.integration.acks.AcknowledgmentCallback
-
acknowledge
public void acknowledge()- Specified by:
acknowledge
in interfaceorg.springframework.kafka.support.Acknowledgment
- Specified by:
acknowledge
in interfaceorg.springframework.integration.acks.AcknowledgmentCallback
- Specified by:
acknowledge
in interfaceorg.springframework.integration.acks.SimpleAcknowledgment
-
noAutoAck
public void noAutoAck()- Specified by:
noAutoAck
in interfaceorg.springframework.integration.acks.AcknowledgmentCallback
-
isAutoAck
public boolean isAutoAck()- Specified by:
isAutoAck
in interfaceorg.springframework.integration.acks.AcknowledgmentCallback
-