Cache Event
Types
Fetch Success
Link copied to clipboard
Emitted when fetch operation was successfully completed, value was stored in the value store, and key was marked as fresh
Load Started
Link copied to clipboard
Emitted when key loading is about to start. Will be followed by either Hit or Miss and then FetchSuccess (if there are no errors)
Miss
Link copied to clipboard
data class Miss<K>(key: K, timestamps: KeyTimestamps?, forceRefresh: Boolean) : CacheEvent<K>
Content copied to clipboard
Emitted when cache miss occurs when loading the key. Fetching value will start after this event is emitted.
Inheritors
CacheEvent
Link copied to clipboard
CacheEvent
Link copied to clipboard
CacheEvent
Link copied to clipboard
CacheEvent
Link copied to clipboard