MCPcopy Index your code
hub / github.com/pyload/pyload / __init__

Method __init__

module/PluginThread.py:476–489  ·  view source on GitHub ↗

Constructor

(self, manager, data, pid=-1, rid=-1, add=False)

Source from the content-addressed store, hash-verified

474
475class InfoThread(PluginThread):
476 def __init__(self, manager, data, pid=-1, rid=-1, add=False):
477 """Constructor"""
478 PluginThread.__init__(self, manager)
479
480 self.data = data
481 self.pid = pid # package id
482 # [ .. (name, plugin) .. ]
483
484 self.rid = rid #result id
485 self.add = add #add packages instead of return result
486
487 self.cache = [] #accumulated data
488
489 self.start()
490
491 def run(self):
492 """run method"""

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
startMethod · 0.45

Tested by

no test coverage detected