Beispiel #1
0
 public override void Execute()
 {
     this._timer = System.Diagnostics.Stopwatch.StartNew();
     RecordSet chunk = new RecordSet(this._columns);
     chunk.SetGhostName(this._name);
     this._space.ChunkHeap.Reallocate(this._name, chunk);
     this._timer.Stop();
     this.Message.AppendLine(string.Format("Chunk '{0}' created", this._name));
 }