(self, name, jobtype)
| 78 | return self.get_jobs() |
| 79 | |
| 80 | def create(self, name, jobtype): |
| 81 | myjob_uuid = windows.com.IID() |
| 82 | newjob = BitsCopyJob() |
| 83 | self.CreateJob(name, jobtype, myjob_uuid, newjob) |
| 84 | return newjob.promote() |
| 85 | |
| 86 | class BitsCopyJob(IBackgroundCopyJob): |
| 87 | version = 1 |
nothing calls this directly
no test coverage detected