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

Method __init__

src/class_sendDataThread.py:26–34  ·  view source on GitHub ↗
(self, sendDataThreadQueue)

Source from the content-addressed store, hash-verified

24class sendDataThread(threading.Thread):
25
26 def __init__(self, sendDataThreadQueue):
27 threading.Thread.__init__(self, name="sendData")
28 self.sendDataThreadQueue = sendDataThreadQueue
29 state.sendDataQueues.append(self.sendDataThreadQueue)
30 self.data = ''
31 self.objectHashHolderInstance = objectHashHolder(self.sendDataThreadQueue)
32 self.objectHashHolderInstance.daemon = True
33 self.objectHashHolderInstance.start()
34 self.connectionIsOrWasFullyEstablished = False
35
36
37 def setup(

Callers

nothing calls this directly

Calls 2

objectHashHolderClass · 0.85
startMethod · 0.80

Tested by

no test coverage detected