Package net.ontopia.persistence.proxy
Interface EvictableIF<K,E>
-
- All Known Implementing Classes:
QueryCache
,TransactionalLRULookupIndex
public interface EvictableIF<K,E>
INTERNAL: Simple interface used by helper objects for invalidation purposes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear(boolean notifyCluster)
E
remove(K key, boolean notifyCluster)
void
removeAll(Collection<K> keys, boolean notifyCluster)
-
-
-
Method Detail
-
removeAll
void removeAll(Collection<K> keys, boolean notifyCluster)
-
clear
void clear(boolean notifyCluster)
-
-