MCPcopy Index your code
hub / github.com/microsoft/AI-Engineering-Coach / AckMessage

Interface AckMessage

src/core/parse-worker.ts:63–63  ·  view source on GitHub ↗

Parent -> worker chunk acknowledgement (issue #106). Routed away from the request handler so * it never re-triggers a parse.

Source from the content-addressed store, hash-verified

61/** Parent -> worker chunk acknowledgement (issue #106). Routed away from the request handler so
62 * it never re-triggers a parse. */
63interface AckMessage { type: 'ack'; seq: number }
64function isAckMessage(msg: unknown): msg is AckMessage {
65 return (
66 typeof msg === 'object' && msg !== null &&

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected