com.bybutter.sisyphus.middleware.kafka.KafkaExceptionPolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sisyphus-kafka2 Show documentation
Show all versions of sisyphus-kafka2 Show documentation
Middleware for using Kafka in Sisyphus Project
package com.bybutter.sisyphus.middleware.kafka
enum class KafkaExceptionPolicy {
/**
* Don't commit the offset, retry current message in next poll.
*/
RETRY,
/**
* Skip current message, commit the offset.
*/
SKIP,
/**
* Don't commit the offset, stop the consumer.
*/
STOP
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy