Interface LocalCacheInvalidateListener<K,V>

All Superinterfaces:
EventListener, ObjectListener

public interface LocalCacheInvalidateListener<K,V> extends ObjectListener
Redisson Object Event listener for local cache invalidation event published by Redis.
Author:
Nikita Koksharov
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onInvalidate(K key, V value)
    Invoked on event of map entry invalidation
  • Method Details

    • onInvalidate

      void onInvalidate(K key, V value)
      Invoked on event of map entry invalidation
      Parameters:
      key - key to remove
      value - value to remove