MCPcopy Create free account
hub / github.com/tiann/hapi / resumeThread

Method resumeThread

cli/src/codex/codexAppServerClient.ts:187–193  ·  view source on GitHub ↗
(params: ThreadResumeParams, options?: { signal?: AbortSignal })

Source from the content-addressed store, hash-verified

185 }
186
187 async resumeThread(params: ThreadResumeParams, options?: { signal?: AbortSignal }): Promise<ThreadResumeResponse> {
188 const response = await this.sendRequest('thread/resume', params, {
189 signal: options?.signal,
190 timeoutMs: CodexAppServerClient.DEFAULT_TIMEOUT_MS
191 });
192 return response as ThreadResumeResponse;
193 }
194
195 async startTurn(params: TurnStartParams, options?: { signal?: AbortSignal }): Promise<TurnStartResponse> {
196 const response = await this.sendRequest('turn/start', params, {

Callers 3

ensureThreadForGoalMethod · 0.45
runMainLoopMethod · 0.45

Calls 1

sendRequestMethod · 0.95

Tested by

no test coverage detected