MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / stopLive

Function stopLive

src/artifacts/live-registry.ts:89–95  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

87}
88
89export async function stopLive(id: string): Promise<boolean> {
90 const e = servers.get(id);
91 if (!e) return false;
92 servers.delete(id);
93 await closeEntry(e);
94 return true;
95}
96
97export async function stopAllLive(): Promise<void> {
98 const all = Array.from(servers.values());

Callers 2

executeMethod · 0.85

Calls 3

closeEntryFunction · 0.85
deleteMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected