Created
January 2, 2014 21:45
-
-
Save devdazed/8227524 to your computer and use it in GitHub Desktop.
Threa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for args in tables_for_load: | |
thread = FileLoaderWorker(*args) | |
thread.start() | |
completed = 0 | |
while completed < len(tables_for_load): | |
try: | |
response, exception = response_queue.get(block=False, timeout=0.1) | |
if exception: | |
raise exception | |
if response: | |
completed += 1 | |
except Queue.Empty: | |
pass # Don't do anything if the queue is empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment