LockingCacheOptionsProtectItemLoader Property

Gets or sets whether the item loader delegate that is specified by the ThreadSafeCacheFactory.Create<TKey, TValue> methods should be protected from invoking it concurrently.
Default value: .

Definition

Namespace: KGySoft.Collections
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public bool ProtectItemLoader { get; set; }

Property Value

Boolean
to protect the item loader delegate (it will not be called concurrently); to allow the item loader delegate to be called concurrently.

See Also