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

BLPop() public method

public BLPop ( string listId, int timeOutSecs ) : byte[][]
listId string
timeOutSecs int
return byte[][]
        public byte[][] BLPop(string listId, int timeOutSecs)
        {
            if (listId == null)
                throw new ArgumentNullException("listId");

            return SendExpectMultiData(Commands.BLPop, listId.ToUtf8Bytes(), timeOutSecs.ToUtf8Bytes());
        }
RedisNativeClient