Interface LookupCachePurge

All Known Implementing Classes:
CachePurge

public interface LookupCachePurge
This is passed into LookupDataAdapter.doRefresh(LookupCachePurge) to allow data adapters to prune cache entries without having to know about the actual cache instances.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Purges all entries from the cache.
    void
    Purges only the cache entry for the given key.
  • Method Details

    • purgeAll

      void purgeAll()
      Purges all entries from the cache.
    • purgeKey

      void purgeKey(Object key)
      Purges only the cache entry for the given key.
      Parameters:
      key - cache key to purge