MCPcopy Create free account
hub / github.com/FSoft-AI4Code/CodeWiki / start

Method start

codewiki/src/fe/background_worker.py:38–44  ·  view source on GitHub ↗

Start the background worker thread.

(self)

Source from the content-addressed store, hash-verified

36 self.load_job_statuses()
37
38 def start(self):
39 """Start the background worker thread."""
40 if not self.running:
41 self.running = True
42 thread = threading.Thread(target=self._worker_loop, daemon=True)
43 thread.start()
44 print("Background worker started")
45
46 def stop(self):
47 """Stop the background worker."""

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected