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

@Experimental public enum BigtableDeliveryGuarantee extends Enum<BigtableDeliveryGuarantee>
Selects eager writes or checkpoint-owned, replay-protected writes.
  • Enum Constant Details

    • AT_LEAST_ONCE

      public static final BigtableDeliveryGuarantee AT_LEAST_ONCE
      Sends records eagerly; Flink recovery may apply them again.
    • EXACTLY_ONCE

      public static final BigtableDeliveryGuarantee EXACTLY_ONCE
      Applies checkpoint-owned envelopes once while their retained row markers remain present.
  • Method Details

    • values

      public static BigtableDeliveryGuarantee[] 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

      public static BigtableDeliveryGuarantee valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<BigtableDeliveryGuarantee>