ServiceStack.Redis.RedisNativeClient.BLPopValue C# (CSharp) Method

BLPopValue() public method

public BLPopValue ( string listId, int timeOutSecs ) : byte[]
listId string
timeOutSecs int
return byte[]
        public byte[] BLPopValue(string listId, int timeOutSecs)
        {
            var blockingResponse = BLPop(new[] { listId }, timeOutSecs);
            return blockingResponse.Length == 0
                ? null
                : blockingResponse[1];
        }

Same methods

RedisNativeClient::BLPopValue ( string listIds, int timeOutSecs ) : byte[][]
RedisNativeClient