Ejemplo n.º 1
0
 public CommandValueValueMessage(int db, CommandFlags flags, RedisCommand command, RedisValue value0, RedisValue value1) : base(db, flags, command)
 {
     value0.AssertNotNull();
     value1.AssertNotNull();
     this.value0 = value0;
     this.value1 = value1;
 }
Ejemplo n.º 2
0
 public CommandKeyValueValueValueMessage(int db, CommandFlags flags, RedisCommand command, RedisKey key, RedisValue value0, RedisValue value1, RedisValue value2) : base(db, flags, command, key)
 {
     value0.AssertNotNull();
     value1.AssertNotNull();
     value2.AssertNotNull();
     this.value0 = value0;
     this.value1 = value1;
     this.value2 = value2;
 }
Ejemplo n.º 3
0
 public CommandValueValueValueValueValueMessage(int db, CommandFlags flags, RedisCommand command, RedisValue value0, RedisValue value1, RedisValue value2, RedisValue value3, RedisValue value4) : base(db, flags, command)
 {
     value0.AssertNotNull();
     value1.AssertNotNull();
     value2.AssertNotNull();
     value3.AssertNotNull();
     value4.AssertNotNull();
     this.value0 = value0;
     this.value1 = value1;
     this.value2 = value2;
     this.value3 = value3;
     this.value4 = value4;
 }
Ejemplo n.º 4
0
 public CommandKeyKeyValueMessage(int db, CommandFlags flags, RedisCommand command, RedisKey key0, RedisKey key1, RedisValue value) : base(db, flags, command, key0, key1)
 {
     value.AssertNotNull();
     this.value = value;
 }
Ejemplo n.º 5
0
 public CommandChannelValueMessage(int db, CommandFlags flags, RedisCommand command, RedisChannel channel, RedisValue value) : base(db, flags, command, channel)
 {
     value.AssertNotNull();
     this.value = value;
 }
Ejemplo n.º 6
0
 public CommandValueKeyMessage(int db, CommandFlags flags, RedisCommand command, RedisValue value, RedisKey key) : base(db, flags, command, key)
 {
     value.AssertNotNull();
     this.value = value;
 }