/**
  * Closes Stream manager
  *
  * @throws IOException If an IO Error occurs
  */
 public void close() throws IOException {
   if (mData != null) {
     mData.close();
   }
   if (mPointers != null) {
     mPointers.close();
   }
 }