Show / Hide Table of Contents

Interface ICacheSupportsMultipleItems

Namespace: Volo.Abp.Caching
Assembly: Volo.Abp.Caching.dll
Syntax
public interface ICacheSupportsMultipleItems

Methods

GetMany(IEnumerable<String>)

Declaration
byte[][] GetMany(IEnumerable<string> keys)
Parameters
Type Name Description
IEnumerable<System.String> keys
Returns
Type Description
System.Byte[][]

GetManyAsync(IEnumerable<String>, CancellationToken)

Declaration
Task<byte[][]> GetManyAsync(IEnumerable<string> keys, CancellationToken token = null)
Parameters
Type Name Description
IEnumerable<System.String> keys
CancellationToken token
Returns
Type Description
Task<System.Byte[][]>

SetMany(IEnumerable<KeyValuePair<String, Byte[]>>, DistributedCacheEntryOptions)

Declaration
void SetMany(IEnumerable<KeyValuePair<string, byte[]>> items, DistributedCacheEntryOptions options)
Parameters
Type Name Description
IEnumerable<KeyValuePair<System.String, System.Byte[]>> items
DistributedCacheEntryOptions options

SetManyAsync(IEnumerable<KeyValuePair<String, Byte[]>>, DistributedCacheEntryOptions, CancellationToken)

Declaration
Task SetManyAsync(IEnumerable<KeyValuePair<string, byte[]>> items, DistributedCacheEntryOptions options, CancellationToken token = null)
Parameters
Type Name Description
IEnumerable<KeyValuePair<System.String, System.Byte[]>> items
DistributedCacheEntryOptions options
CancellationToken token
Returns
Type Description
Task

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