Enum Class TransactionEvent.Type

java.lang.Object
java.lang.Enum<TransactionEvent.Type>
com.tangosol.net.events.partition.TransactionEvent.Type
All Implemented Interfaces:
Serializable, Comparable<TransactionEvent.Type>, Constable
Enclosing interface:
TransactionEvent

public static enum TransactionEvent.Type extends Enum<TransactionEvent.Type>
The TransactionEvent types.
  • Enum Constant Details

    • COMMITTING

      public static final TransactionEvent.Type COMMITTING
      A COMMITTING event is raised prior to any updates to the underlying backing map. This event will contain all modified entries which may span multiple backing maps.

      The following holds:

      • The BinaryEntry instances passed for this event type are mutable.
      • A lock will be held for each entry during the processing of this event, preventing concurrent updates.
      • Throwing an exception from this event will prevent the operation from being committed.
    • COMMITTED

      public static final TransactionEvent.Type COMMITTED
      A COMMITTED event is raised after any mutations have been committed to the underlying backing maps. This event will contain all modified entries which may span multiple backing maps. The BinaryEntry instances passed for this event type are immutable.
  • Method Details

    • values

      public static TransactionEvent.Type[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TransactionEvent.Type valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null