Skip to content

Instantly share code, notes, and snippets.

@devdazed
Created January 2, 2014 21:45
Show Gist options
  • Save devdazed/8227524 to your computer and use it in GitHub Desktop.
Save devdazed/8227524 to your computer and use it in GitHub Desktop.
Threa
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