MCPcopy Index your code
hub / github.com/Bitmessage/PyBitmessage / __init__

Method __init__

src/network/receivequeuethread.py:20–24  ·  view source on GitHub ↗
(self, num=0)

Source from the content-addressed store, hash-verified

18
19class ReceiveQueueThread(threading.Thread, StoppableThread):
20 def __init__(self, num=0):
21 threading.Thread.__init__(self, name="ReceiveQueue_%i" %(num))
22 self.initStop()
23 self.name = "ReceiveQueue_%i" % (num)
24 logger.info("init receive queue thread %i", num)
25
26 def run(self):
27 while not self._stopped and state.shutdown == 0:

Callers

nothing calls this directly

Calls 1

initStopMethod · 0.80

Tested by

no test coverage detected