In memory queue storage class.
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
all_tasks(self)
Return an iterator over all tasks currently in the queue in
descending order by length of time in the queue. |
source code
|
|
|
unfinished_tasks(self)
Return an iterator over all unfinished tasks in the queue in
descending order by length of time in the queue. |
source code
|
|
|
waiting_tasks(self)
Return an iterator over all waiting tasks in the queue, in descending
order by the length of time in the queue. |
source code
|
|
|
running_tasks(self)
Return an iterator over all running tasks in the queue, in descending
order by the length of time in the queue. |
source code
|
|
|
complete_tasks(self)
Return an iterator over all complete tasks in the queue, in
descending order by the length of time in the queue. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|