MCPcopy Create free account
hub / github.com/brmmm3/fastthreadpool / submit_done_first

Method submit_done_first

fastthreadpool/fastthreadpool.py:429–430  ·  view source on GitHub ↗
(self, fn, done_callback, *args, **kwargs)

Source from the content-addressed store, hash-verified

427 return self._submit(fn, True, args, kwargs, True)
428
429 def submit_done_first(self, fn, done_callback, *args, **kwargs):
430 return self._submit(fn, done_callback, args, kwargs, True)
431
432 def _submit_later_do(self, timer_obj, fn, done_callback, args, kwargs):
433 self._submit(fn, done_callback, args, kwargs, True)

Callers

nothing calls this directly

Calls 1

_submitMethod · 0.95

Tested by

no test coverage detected