MCPcopy Create free account
hub / github.com/BUPT-GAMMA/MASFactory / start

Method start

masfactory/visualizer/runtime.py:274–282  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

272 return events, dropped, truncated
273
274 def start(self) -> None:
275 with self._lock:
276 if self._thread and self._thread.is_alive():
277 return
278 self._stop.clear()
279 self._thread = threading.Thread(
280 target=self._run, name="masfactory-visualizer-runtime", daemon=True
281 )
282 self._thread.start()
283
284 def stop(self) -> None:
285 self._stop.set()

Callers 15

request_interactionMethod · 0.95
set_active_graphMethod · 0.95
send_messageMethod · 0.95
replacerFunction · 0.45
_parse_tagged_fieldsMethod · 0.45
connectMethod · 0.45
function_with_timeoutFunction · 0.45
replace_braceFunction · 0.45
replace_braceFunction · 0.45
extract_answer_from_textFunction · 0.45
check_correctnessFunction · 0.45
time_limitFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected