BookSleeve.LockMessage.LockMessage C# (CSharp) Method

LockMessage() public method

public LockMessage ( int db, string key, string value, int timeout ) : System
db int
key string
value string
timeout int
return System
        public LockMessage(int db, string key, string value, int timeout)
            : base(db, RedisLiteral.WATCH)
        {
            this.key = key;
            this.value = value;
            this.timeout = timeout;
        }