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

BRPopValue() public method

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

Same methods

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