Exemple #1
0
 /// <summary>
 /// client
 /// </summary>
 /// <param name="client"></param>
 internal RedisConnection(RedisClient client)
 {
     this.client   = client;
     this.disposed = false;
     this.Connect();
 }
Exemple #2
0
 internal RedisHyperLogLog(RedisClient client, RedisConnection connection)
 {
     this.connection = connection;
     this.client     = client;
 }
Exemple #3
0
 internal RedisPubSub(RedisClient client, RedisConnection connection)
 {
     this.connection = connection;
     this.client     = client;
 }