Skip to main content

RedisClientManagerFacade

Assembly: ServiceStack.dll
View Source
Declaration
public class RedisClientManagerFacade : IRedisClientManagerFacade, IClearable, IClearableAsync

Methods

GetClient()

View Source
Declaration
public IRedisClientFacade GetClient()
Returns

ServiceStack.Auth.IRedisClientFacade

Clear()

View Source
Declaration
public void Clear()

ClearAsync(CancellationToken)

View Source
Declaration
public async Task ClearAsync(CancellationToken token = default(CancellationToken))
Returns

System.Threading.Tasks.Task

Parameters
TypeName
System.Threading.CancellationTokentoken

GetClientAsync(CancellationToken)

View Source
Declaration
public async Task<IRedisClientFacadeAsync> GetClientAsync(CancellationToken token = default(CancellationToken))
Returns

System.Threading.Tasks.Task<ServiceStack.Auth.IRedisClientFacadeAsync>

Parameters
TypeName
System.Threading.CancellationTokentoken

Implements