MCPcopy
hub / github.com/buildbot/buildbot / execute_in_thread

Method execute_in_thread

master/buildbot/util/queue.py:75–78  ·  view source on GitHub ↗
(self, cb, *args, **kwargs)

Source from the content-addressed store, hash-verified

73 super().join(*args, **kwargs)
74
75 def execute_in_thread(self, cb, *args, **kwargs):
76 d = defer.Deferred()
77 self._queue.put((d, cb, args, kwargs))
78 return d
79
80 @property
81 def conn(self):

Calls 1

putMethod · 0.45