close method

void close()

Terminate and release the session (aborts the driver; idempotent).

Implementation

void close() {
  if (!_closed) {
    _ffi.transcriptionSessionDrop(_handle);
    _closed = true;
  }
}