public enum AckLevel extends java.lang.Enum<AckLevel>
depot clients
.Enum Constant and Description |
---|
ACK
Waits for confirmation the append has been received and replicated on the target
depot partition and that all colocated stream topologies have process the append.
|
APPEND_ACK
Waits for confirmation the append has been received and replicated on the target
depot partition.
|
NONE
Attempts the append but doesn't get any confirmation of success or failure.
|
Modifier and Type | Method and Description |
---|---|
static AckLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AckLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AckLevel NONE
public static final AckLevel APPEND_ACK
public static final AckLevel ACK
public static AckLevel[] values()
for (AckLevel c : AckLevel.values()) System.out.println(c);
public static AckLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null