MCPcopy Create free account
hub / github.com/continuedev/continue / getRunningProcess

Function getRunningProcess

core/util/processTerminalStates.ts:52–57  ·  view source on GitHub ↗
(
  toolCallId: string,
)

Source from the content-addressed store, hash-verified

50}
51
52export function getRunningProcess(
53 toolCallId: string,
54): ChildProcess | undefined {
55 const info = processTerminalForegroundStates.get(toolCallId);
56 return info?.process;
57}
58
59export function updateProcessOutput(toolCallId: string, output: string): void {
60 const info = processTerminalForegroundStates.get(toolCallId);

Callers 1

Calls 1

getMethod · 0.65

Tested by

no test coverage detected