public enum ProducerUpReason extends Enum<ProducerUpReason>
Enum Constant and Description |
---|
FirstRecoveryCompleted
Indicates that the Producer was marked up because the first recovery request completed successfully
|
ProcessingQueDelayStabilized
Indicates that the Producer was marked up because the time frame between the message generation
and the message processing completion was again within the limit
|
ReturnedFromInactivity
Indicates that the Producer was marked up because a producer came back online
|
Modifier and Type | Method and Description |
---|---|
ProducerStatusReason |
asProducerStatusReason() |
static ProducerUpReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProducerUpReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProducerUpReason FirstRecoveryCompleted
public static final ProducerUpReason ProcessingQueDelayStabilized
public static final ProducerUpReason ReturnedFromInactivity
public static ProducerUpReason[] values()
for (ProducerUpReason c : ProducerUpReason.values()) System.out.println(c);
public static ProducerUpReason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic ProducerStatusReason asProducerStatusReason()
Copyright © 2016–2025. All rights reserved.