MCPcopy Create free account
hub / github.com/LangGraph-GUI/LangGraph-GUI-backend / __init__

Method __init__

src/process_handler.py:8–13  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

6
7class ProcessHandler:
8 def __init__(self):
9 self._process = None
10 self._output_queue = AsyncQueue() # Use asyncio.Queue
11 self._is_running = False
12 self._is_starting = False
13 self._stream_tasks = [] # Store stream tasks
14
15 async def run(self, command: list, cwd: str):
16 if self._is_running or self._is_starting:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected