示例#1
0
 /// <summary>
 /// client
 /// </summary>
 /// <param name="client"></param>
 internal RedisConnection(RedisClient client)
 {
     this.client   = client;
     this.disposed = false;
     this.Connect();
 }
示例#2
0
 internal RedisHyperLogLog(RedisClient client, RedisConnection connection)
 {
     this.connection = connection;
     this.client     = client;
 }
示例#3
0
文件: RedisPubSub.cs 项目: aooshi/adf
 internal RedisPubSub(RedisClient client, RedisConnection connection)
 {
     this.connection = connection;
     this.client     = client;
 }