Rename PooledThread.start -> mainloop.

This commit is contained in:
voussoir 2021-11-20 19:20:39 -08:00
parent f1aea14646
commit dcd4d20b07
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -67,7 +67,7 @@ class PooledThread:
''' '''
def __init__(self, pool): def __init__(self, pool):
self.pool = pool self.pool = pool
self.thread = threading.Thread(target=self.start, daemon=True) self.thread = threading.Thread(target=self.mainloop, daemon=True)
self.thread.start() self.thread.start()
def __repr__(self): def __repr__(self):
@ -103,7 +103,7 @@ class PooledThread:
log.debug('%s is joining.', self) log.debug('%s is joining.', self)
self.thread.join() self.thread.join()
def start(self): def mainloop(self):
while True: while True:
# Let's wait for jobs_available first and unpaused second. # Let's wait for jobs_available first and unpaused second.
# If the time between the two waits is very long, the worst thing # If the time between the two waits is very long, the worst thing