IMQAfterCall interface
Hook invoked after a call has been handled.
Signature:
export interface IMQAfterCall<_T>
Remarks
Purely for observation — logging, metrics, tracing. On a service it runs after the response has already been sent; on a client it runs after the caller's promise has already been resolved or rejected. In both cases it is too late to change the outcome, and the caller does not wait for it.
It is also invoked for failures, where res may be absent — for example when the request could not be sent at all. Thrown errors are logged as warnings (see AFTER_HOOK_ERROR) and swallowed; the return value is ignored.
Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.