com.devonfw.module.kafka.common.messaging.health.impl.HealthStatus 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.health.impl;
/**
* An Enum class to specify the Health status.
*
* @deprecated The implementation of devon4j-kafka will be abandoned. It is superseeded by Springs Kafka
* implementation.
*/
@Deprecated
public enum HealthStatus {
/**
* This indicates the the health of the kafka is UP.
*/
UP,
/**
* This indicates the the health of the kafka is DOWN.
*/
DOWN;
}