Пример #1
0
 /**
  * Get a buffer for writing. This caller must synchronize on the storage before calling the method
  * and until after using the buffer.
  *
  * @return the buffer
  */
 private WriteBuffer getWriteBuffer() {
   WriteBuffer buff;
   if (writeBuffer != null) {
     buff = writeBuffer;
     buff.clear();
   } else {
     buff = new WriteBuffer();
   }
   return buff;
 }