Enum BigtableDeliveryGuarantee
java.lang.Object
java.lang.Enum<BigtableDeliveryGuarantee>
io.github.flink.gcp.connector.bigtable.sink.BigtableDeliveryGuarantee
- All Implemented Interfaces:
Serializable,Comparable<BigtableDeliveryGuarantee>,java.lang.constant.Constable
Selects eager writes or checkpoint-owned, replay-protected writes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSends records eagerly; Flink recovery may apply them again.Applies checkpoint-owned envelopes once while their retained row markers remain present. -
Method Summary
Modifier and TypeMethodDescriptiontoString()static BigtableDeliveryGuaranteeReturns the enum constant of this type with the specified name.static BigtableDeliveryGuarantee[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AT_LEAST_ONCE
Sends records eagerly; Flink recovery may apply them again. -
EXACTLY_ONCE
Applies checkpoint-owned envelopes once while their retained row markers remain present.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
- Overrides:
toStringin classEnum<BigtableDeliveryGuarantee>
-