All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bybutter.sisyphus.middleware.kafka.KafkaExceptionPolicy.kt Maven / Gradle / Ivy

There is a newer version: 2.1.22
Show newest version
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