Enum TransactionEvent.Type

    • Enum Constant Detail

      • 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 Detail

      • values

        public static TransactionEvent.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TransactionEvent.Type c : TransactionEvent.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TransactionEvent.Type 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