Interface CacheEntryRemovedEvent<K,​V>

    • Method Detail

      • getValue

        V getValue()
        Retrieves the value of the entry being deleted.

        Specified by:
        getValue in interface CacheEntryEvent<K,​V>
        Returns:
        the value of the entry being deleted, if isPre() is true. null otherwise.
      • getOldValue

        V getOldValue()
        Regardless of whether isPre() is true or is false, this method returns the value of the entry being deleted. This method is useful for situations where cache listeners need to know what the old value being deleted is when getting isPre() is false callbacks.
        Returns:
        the value of the entry being deleted, regardless of isPre() value
      • isCommandRetried

        boolean isCommandRetried()
        This will be true if the write command that caused this had to be retried again due to a topology change. This could be a sign that this event has been duplicated or another event was dropped and replaced (eg: ModifiedEvent replaced CreateEvent)
        Returns:
        Whether the command that caused this event was retried