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

RPopLPush() public method

public RPopLPush ( string fromListId, string toListId ) : byte[]
fromListId string
toListId string
return byte[]
        public byte[] RPopLPush(string fromListId, string toListId)
        {
            if (fromListId == null)
                throw new ArgumentNullException("fromListId");
            if (toListId == null)
                throw new ArgumentNullException("toListId");

            return SendExpectData(Commands.RPopLPush, fromListId.ToUtf8Bytes(), toListId.ToUtf8Bytes());
        }
RedisNativeClient