Esempio n. 1
0
 public void RemoveEventDef(EventDef ed)
 {
     if (!EventDefs.Remove(ed))
     {
         throw new ApplicationException($"Could not remove EventDef: {ed}");
     }
 }
Esempio n. 2
0
 public void RemoveEventDef(EventDef ed)
 {
     if (!EventDefs.Remove(ed))
     {
         throw new ApplicationException(string.Format("Could not remove EventDef: {0}", ed));
     }
 }
Esempio n. 3
0
 public BucketGenerator(CarbonClient cc_, EventDefs eventDefCollections)
 {
     this.eventDefCollections = eventDefCollections;
 }
Esempio n. 4
0
 public BucketGenerator(CarbonClient cc_)
 {
     eventDefCollections = Singleton<EventDefs>.Instance;
 }