Skip to content

EncryptedSqliteBlobCache.InvalidateAll(Type) method

Defined in

Type: EncryptedSqliteBlobCache Namespace: ReactiveMarbles.CacheDatabase.EncryptedSqlite3 Assembly: ReactiveMarbles.CacheDatabase.EncryptedSqlite3.dll

Applies to

netstandard2.0

Overloads

  • 1. public IObservable<Unit> InvalidateAll(Type type)
  • 2. public IObservable<Unit> InvalidateAll()

1. Overload

public IObservable<Unit> InvalidateAll(Type type)

View source

Inherited documentation

These docs were inherited from IBlobCache. The member doesn't override them on this type.

Summary: Invalidates all entries for the specified type.

Parameters

NameTypeDescription
typeTypeThe type to invalidate.

Returns: IObservable -- A signal indicating when the invalidate is complete.

2. Overload

public IObservable<Unit> InvalidateAll()

View source

Inherited documentation

These docs were inherited from IBlobCache. The member doesn't override them on this type.

Summary: Invalidate all entries in the cache (i.e. clear it). Note that this method is blocking and incurs a significant performance penalty if used while the cache is being used on other threads.

Returns: IObservable -- A signal indicating when the invalidate is complete.