(self, local_path, callback=None)
| 1100 | return self.client.download_sync(local_path=local_path, remote_path=self.urn.path()) |
| 1101 | |
| 1102 | def write_async(self, local_path, callback=None): |
| 1103 | return self.client.download_async(local_path=local_path, remote_path=self.urn.path(), callback=callback) |
| 1104 | |
| 1105 | def publish(self): |
| 1106 | return self.client.publish(self.urn.path()) |
nothing calls this directly
no test coverage detected