Pop the top function from the internal queue and call it.
(self)
| 406 | self.queue.append((func, args)) |
| 407 | |
| 408 | def _dequeue(self): |
| 409 | """ Pop the top function from the internal queue and call it. |
| 410 | |
| 411 | """ |
| 412 | func, args = self.queue.popleft() |
| 413 | func(*args) |
| 414 | |
| 415 | def process_queue(self): |
| 416 | """ Process the entire queue while taking periodic breaks. This allows |
no outgoing calls
no test coverage detected