Example #1
0
 public bool RegisterOperator(CacheType type, ICacheOperator op)
 {
     if (Operators.ContainsKey(type))
     {
         return(false);
     }
     op.SetCacheDir(baseDir + "//mcdata");
     Operators.Add(type, op);
     return(true);
 }