expire

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

Tells the cache that the values it stores for the given id are out of date, no matter the context, and should be queried again the next time they are requested.

All layers are updated.


open suspend fun expire(id: Identifier, context: Context)(source)

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

All layers are updated.


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

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

All layers are updated.