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

com.devonfw.module.kafka.common.messaging.retry.api.RetryState Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy