Beispiel #1
0
 // Do any final actions on a completed NewVector.  Mostly: compress it, and
 // do a DKV put on an appropriate Key.  The original NewVector goes dead
 // (does not live on inside the K/V store).
 public Chunk new_close(Futures fs) {
   Chunk chk = compress();
   if (_vec instanceof AppendableVec) ((AppendableVec) _vec).closeChunk(this);
   return chk;
 }
Beispiel #2
0
 // Do any final actions on a completed NewVector.  Mostly: compress it, and
 // do a DKV put on an appropriate Key.  The original NewVector goes dead
 // (does not live on inside the K/V store).
 public Chunk new_close() {
   Chunk chk = compress();
   if (_vec instanceof AppendableVec) ((AppendableVec) _vec).closeChunk(_cidx, chk._len);
   return chk;
 }