Ejemplo n.º 1
0
        private void RemoveWriteBatch(ClusterDB.WriteBatch toRemove)
        {
            int num = this.openWriteBatches.IndexOf(toRemove);

            if (num >= 0)
            {
                this.openWriteBatches.RemoveAt(num);
            }
        }
Ejemplo n.º 2
0
 public IClusterDBWriteBatch CreateWriteBatch(string registryKey)
 {
     ClusterDB.WriteBatch writeBatch = new ClusterDB.WriteBatch(this, registryKey);
     this.openWriteBatches.Add(writeBatch);
     return(writeBatch);
 }