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

Method getQueueCount

module/database/FileDatabase.py:361–366  ·  view source on GitHub ↗

number of files that have to be processed

(self, force=False)

Source from the content-addressed store, hash-verified

359 return self.filecount
360
361 def getQueueCount(self, force=False):
362 """number of files that have to be processed"""
363 if self.queuecount == -1 or force:
364 self.queuecount = self.db.queuecount(1)
365
366 return self.queuecount
367
368 def checkAllLinksFinished(self):
369 """checks if all files are finished and dispatch event"""

Callers 2

checkAllLinksFinishedMethod · 0.95
statusServerMethod · 0.80

Calls 1

queuecountMethod · 0.80

Tested by

no test coverage detected