public Tests() { Console.WriteLine("Create RedisqlCore"); this.redisql = new RedisqlCore("127.0.0.1", 6379, ""); this.redisql.OnEvent += OnRedisqlEventHander; }
public RedisqlTransaction(RedisqlCore redis, List <TransactionTarget> tranTargetList) { this.redis = redis; this.tranTargetList = tranTargetList; this.enterSuccessList = new List <Tuple <TableSetting, string> >(); }