IThreadSafeCacheAccessorTKey, TValue Interface
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
public interface IThreadSafeCacheAccessor<in TKey, out TValue>
Public Interface IThreadSafeCacheAccessor(Of In TKey, Out TValue)
generic<typename TKey, typename TValue>
public interface class IThreadSafeCacheAccessor
type IThreadSafeCacheAccessor<'TKey, 'TValue> = interface end
Type Parameters
- TKey
- The type of the key in the cache.
- TValue
- The type of the value in the cache.
Item |
Gets the value associated with the specified key.
If a value does not exist in the underlying cache, then the loader delegate will be invoked,
which was specified when this IThreadSafeCacheAccessorTKey, TValue instance was created.
|