Ensure clearing the cache delete the CacheStore.
This commit is contained in:
parent
93717d0db0
commit
ed58f7161e
8 changed files with 45 additions and 2 deletions
|
|
@ -26,4 +26,8 @@ class InMemoryCacheStore(
|
|||
override suspend fun deleteData(key: String) {
|
||||
dataMap.remove(key)
|
||||
}
|
||||
|
||||
override suspend fun deleteAll() {
|
||||
dataMap.clear()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue