protected void saveBuffer(java.nio.ByteBuffer buffer, java.io.File outFile)
     throws java.io.IOException {
   synchronized (this.fileLock) // sychronized with read of file in RequestTask.run()
   {
     WWIO.saveBuffer(buffer, outFile);
   }
 }