Waits for the thread to finish executing. @type dwTimeout: int @param dwTimeout: (Optional) Timeout value in milliseconds. Use C{INFINITE} or C{None} for no timeout.
(self, dwTimeout=None)
| 352 | # ------------------------------------------------------------------------------ |
| 353 | |
| 354 | def wait(self, dwTimeout=None): |
| 355 | """ |
| 356 | Waits for the thread to finish executing. |
| 357 | |
| 358 | @type dwTimeout: int |
| 359 | @param dwTimeout: (Optional) Timeout value in milliseconds. |
| 360 | Use C{INFINITE} or C{None} for no timeout. |
| 361 | """ |
| 362 | self.get_handle(win32.SYNCHRONIZE).wait(dwTimeout) |
| 363 | |
| 364 | def kill(self, dwExitCode=0): |
| 365 | """ |