close method
void
close()
Close the query and free resources.
Implementation
void close() {
if (!_closed) {
_closed = true;
_finalizer.detach(this);
checkObx(C.query_close(_cQuery));
}
}
Close the query and free resources.
void close() {
if (!_closed) {
_closed = true;
_finalizer.detach(this);
checkObx(C.query_close(_cQuery));
}
}