expire

open suspend fun expire(id: Identifier)(source)

Tells the cache that the value it stores for id is out of date, and should be queried again the next time it is requested.

All layers are updated.


abstract suspend fun expire(ids: Collection<Identifier>)(source)

Tells the cache that the value it stores for the given ids are out of date, and should be queried again the next time they are requested.

All layers are updated.