MCPcopy Index your code
hub / github.com/fogleman/Minecraft / _dequeue

Method _dequeue

main.py:408–413  ·  view source on GitHub ↗

Pop the top function from the internal queue and call it.

(self)

Source from the content-addressed store, hash-verified

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

Callers 2

process_queueMethod · 0.95
process_entire_queueMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected