/**
  * Close the associated {@link AsyncIOWriter}
  *
  * @throws IOException
  */
 public void close() throws IOException {
   if (asyncIOWriter != null) {
     asyncIOWriter.close(this);
   }
 }