Close the project and stop all background operations (e.g. file uploads)
(self)
| 67 | return core.BNRemoteProjectOpen(self._handle, util.wrap_progress(progress), None) |
| 68 | |
| 69 | def close(self): |
| 70 | """ |
| 71 | Close the project and stop all background operations (e.g. file uploads) |
| 72 | """ |
| 73 | core.BNRemoteProjectClose(self._handle) |
| 74 | |
| 75 | @staticmethod |
| 76 | def get_for_local_database(database: 'Database') -> Optional['RemoteProject']: |
no outgoing calls