This repository has been archived on 2025-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-02/src/class_asyncoreThread.py
2013-07-05 13:55:40 +07:00

20 lines
500 B
Python

import asyncore
import shared
import threading
import time
class asyncoreThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run(self):
shared.printLock.acquire()
print "Asyncore thread started"
shared.printLock.release()
while True:
asyncore.loop(timeout=1) # Despite the horrible parameter name, this function will not timeout until all channels are closed.
time.sleep(1)