Example #1
0
 public bool CreateObserver(string path, DateValue.Operation oper)
 {
     if (DBManager.IsObserver(path) == "")
     {
         return(false);
     }
     DateValue.listObserver.Add(new FileObserver(path, oper));
     DBManager.AddObserver(path, oper);
     return(true);
 }