class documentation

Statistics about a Team's current activity.

Method __init__ Undocumented
Instance Variable backloggedWorkCount 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 busyWorkerCount The number of busy workers.
Instance Variable idleWorkerCount The number of idle workers.
def __init__(self, idleWorkerCount: int, busyWorkerCount: int, backloggedWorkCount: int):

Undocumented

backloggedWorkCount: int =

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 =

The number of busy workers.

idleWorkerCount: int =

The number of idle workers.