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