Interface Observability
public interface Observability
Defines a series of callbacks which can be used to observe internal events occurring within the cache, for purposes
of monitoring or alerting.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cacheInvalidationOutOfSequence
(com.atlassian.cache.ManagedCache cache) Called when a cache invalidation is detected out-of-sequence and causes a cache to be flushed.void
sequenceSnapshotInconsistent
(com.atlassian.cache.ManagedCache cache) Called when a sequence snapshot verification fails and causes the cache to flushed.
-
Method Details
-
sequenceSnapshotInconsistent
void sequenceSnapshotInconsistent(com.atlassian.cache.ManagedCache cache) Called when a sequence snapshot verification fails and causes the cache to flushed. -
cacheInvalidationOutOfSequence
void cacheInvalidationOutOfSequence(com.atlassian.cache.ManagedCache cache) Called when a cache invalidation is detected out-of-sequence and causes a cache to be flushed.
-