com.devonfw.module.kafka.common.messaging.retry.api.RetryState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devon4j-kafka Show documentation
Show all versions of devon4j-kafka Show documentation
kafka implementation for devon4j.
package com.devonfw.module.kafka.common.messaging.retry.api;
/**
* An Enum class to indicate current retry patter state.
*
* @deprecated The implementation of devon4j-kafka will be abandoned. It is superseeded by Springs Kafka
* implementation.
*/
@Deprecated
public enum RetryState {
/**
* PENDING
*/
PENDING,
/**
* SUCESSFUL
*/
SUCCESSFUL,
/**
* FAILED
*/
FAILED,
/**
* EXPRIED
*/
EXPIRED;
}