class documentation

class Statistics: (source)

View In Hierarchy

Statistics about a Team's current activity.
Method __init__ Undocumented
Instance Variable backlogged​Work​Count The number of work items passed to Team.do which have not yet been sent to a worker to be performed because not enough workers are available.
Instance Variable busy​Worker​Count The number of busy workers.
Instance Variable idle​Worker​Count The number of idle workers.
def __init__(self, idleWorkerCount, busyWorkerCount, backloggedWorkCount): (source)

Undocumented

backloggedWorkCount: int = (source)
The number of work items passed to Team.do which have not yet been sent to a worker to be performed because not enough workers are available.
busyWorkerCount: int = (source)
The number of busy workers.
idleWorkerCount: int = (source)
The number of idle workers.