Enum CacheLifecycleEvent.Type

    • Enum Constant Detail

      • CREATED

        public static final CacheLifecycleEvent.Type CREATED
        CacheLifecycleEvents of the type CREATED are raised when the relevant data structures to support a cache are created locally.

        This event can be raised on both ownership enabled and disabled members.

        The event may be raised based on a "natural" call to ensureCache, or for synthetic reasons such as a member joining an existing service with pre-existing caches.

      • TRUNCATED

        public static final CacheLifecycleEvent.Type TRUNCATED
        CacheLifecycleEvents of the type TRUNCATED are raised when a storage for a given cache is truncated as a result of a call to truncate.

        Truncate provides unobservable removal of all data associated to a cache thus this event notifies subscribers of the execution of a truncate operation, intentionally, without the associated entries.

    • Method Detail

      • values

        public static CacheLifecycleEvent.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 (CacheLifecycleEvent.Type c : CacheLifecycleEvent.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 CacheLifecycleEvent.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