IRedisQueueCompletableOperation
Interface to operations that allow queued commands to be completed
Assembly: ServiceStack.Interfaces.dll
View Source
Declaration
public interface IRedisQueueCompletableOperation
Methods
CompleteVoidQueuedCommand(Action)
View Source
Declaration
void CompleteVoidQueuedCommand(Action voidReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Action | voidReadCommand | 
CompleteIntQueuedCommand(Func<Int32>)
View Source
Declaration
void CompleteIntQueuedCommand(Func<int> intReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.Int32> | intReadCommand | 
CompleteLongQueuedCommand(Func<Int64>)
View Source
Declaration
void CompleteLongQueuedCommand(Func<long> longReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.Int64> | longReadCommand | 
CompleteBytesQueuedCommand(Func<Byte[]>)
View Source
Declaration
void CompleteBytesQueuedCommand(Func<byte[]> bytesReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.Byte[]> | bytesReadCommand | 
CompleteMultiBytesQueuedCommand(Func<Byte[][]>)
View Source
Declaration
void CompleteMultiBytesQueuedCommand(Func<byte[][]> multiBytesReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.Byte[][]> | multiBytesReadCommand | 
CompleteStringQueuedCommand(Func<String>)
View Source
Declaration
void CompleteStringQueuedCommand(Func<string> stringReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.String> | stringReadCommand | 
CompleteMultiStringQueuedCommand(Func<List<String>>)
View Source
Declaration
void CompleteMultiStringQueuedCommand(Func<List<string>> multiStringReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.Collections.Generic.List<System.String>> | multiStringReadCommand | 
CompleteDoubleQueuedCommand(Func<Double>)
View Source
Declaration
void CompleteDoubleQueuedCommand(Func<double> doubleReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<System.Double> | doubleReadCommand | 
CompleteRedisDataQueuedCommand(Func<RedisData>)
View Source
Declaration
void CompleteRedisDataQueuedCommand(Func<RedisData> redisDataReadCommand)
Parameters
| Type | Name | 
|---|---|
System.Func<ServiceStack.Redis.RedisData> | redisDataReadCommand |