Show / Hide Table of Contents

Interface IDistributedCache<TCacheItem>

Represents a distributed cache of TCacheItem type.

Inherited Members
IDistributedCache<TCacheItem, String>.Get(String, Nullable<Boolean>, Boolean)
IDistributedCache<TCacheItem, String>.GetMany(IEnumerable<String>, Nullable<Boolean>, Boolean)
IDistributedCache<TCacheItem, String>.GetManyAsync(IEnumerable<String>, Nullable<Boolean>, Boolean, CancellationToken)
IDistributedCache<TCacheItem, String>.GetAsync(String, Nullable<Boolean>, Boolean, CancellationToken)
IDistributedCache<TCacheItem, String>.GetOrAdd(String, Func<TCacheItem>, Func<DistributedCacheEntryOptions>, Nullable<Boolean>, Boolean)
IDistributedCache<TCacheItem, String>.GetOrAddAsync(String, Func<Task<TCacheItem>>, Func<DistributedCacheEntryOptions>, Nullable<Boolean>, Boolean, CancellationToken)
IDistributedCache<TCacheItem, String>.Set(String, TCacheItem, DistributedCacheEntryOptions, Nullable<Boolean>, Boolean)
IDistributedCache<TCacheItem, String>.SetAsync(String, TCacheItem, DistributedCacheEntryOptions, Nullable<Boolean>, Boolean, CancellationToken)
IDistributedCache<TCacheItem, String>.SetMany(IEnumerable<KeyValuePair<String, TCacheItem>>, DistributedCacheEntryOptions, Nullable<Boolean>, Boolean)
IDistributedCache<TCacheItem, String>.SetManyAsync(IEnumerable<KeyValuePair<String, TCacheItem>>, DistributedCacheEntryOptions, Nullable<Boolean>, Boolean, CancellationToken)
IDistributedCache<TCacheItem, String>.Refresh(String, Nullable<Boolean>)
IDistributedCache<TCacheItem, String>.RefreshAsync(String, Nullable<Boolean>, CancellationToken)
IDistributedCache<TCacheItem, String>.Remove(String, Nullable<Boolean>, Boolean)
IDistributedCache<TCacheItem, String>.RemoveAsync(String, Nullable<Boolean>, Boolean, CancellationToken)
Namespace: Volo.Abp.Caching
Assembly: Volo.Abp.Caching.dll
Syntax
public interface IDistributedCache<TCacheItem> : IDistributedCache<TCacheItem, string> where TCacheItem : class
Type Parameters
Name Description
TCacheItem

The type of cache item being cached.

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft