(self, operation_handle)
| 1089 | return self.__get_operation(operation_handle).cancel() |
| 1090 | |
| 1091 | def close_query(self, operation_handle): |
| 1092 | self.log_handle(operation_handle, "closing query for operation") |
| 1093 | return self.__get_operation(operation_handle).close() |
| 1094 | |
| 1095 | def state_is_finished(self, operation_handle): # noqa: U100 |
| 1096 | raise NotImplementedError() |