OutgoingMessage.prototype.setTimeout - Node documentation
method OutgoingMessage.prototype.setTimeout

Usage in Deno

import { OutgoingMessage } from "node:http";
OutgoingMessage.prototype.setTimeout(
msecs: number,
callback?: () => void,
): this

Once a socket is associated with the message and is connected,socket.setTimeout() will be called with msecs as the first parameter.

Parameters

msecs: number
optional
callback: () => void

Optional function to be called when a timeout occurs. Same as binding to the timeout event.

Return Type

this