Interface InfinispanBaseRegion
-
- All Superinterfaces:
TimeSource
- All Known Subinterfaces:
InfinispanDataRegion
public interface InfinispanBaseRegion extends TimeSource
Any region usingAdvancedCache
for the underlying storage.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
beginInvalidation()
boolean
checkValid()
void
destroy()
void
endInvalidation()
org.infinispan.AdvancedCache
getCache()
long
getElementCountInMemory()
long
getLastRegionInvalidation()
String
getName()
default void
invalidateRegion()
-
Methods inherited from interface org.infinispan.hibernate.cache.commons.TimeSource
nextTimestamp
-
-
-
-
Method Detail
-
getCache
org.infinispan.AdvancedCache getCache()
-
getName
String getName()
-
invalidateRegion
default void invalidateRegion()
-
beginInvalidation
void beginInvalidation()
-
endInvalidation
void endInvalidation()
-
getLastRegionInvalidation
long getLastRegionInvalidation()
-
checkValid
boolean checkValid()
-
destroy
void destroy()
-
getElementCountInMemory
long getElementCountInMemory()
-
-