close method

void close()

Implementation

void close() {
  if (_handle != 0) {
    _close(_handle);
    _handle = 0;
  }
}