Skip to main content
Build Real-time Applications with the new "watch" API in Deno KV
Read more
function Deno.shutdown

Shutdown socket send operations.

Matches behavior of POSIX shutdown(3).

const listener = Deno.listen({ port: 80 });
const conn = await listener.accept();
Deno.shutdown(conn.rid);

Parameters

rid: number

Returns

Promise<void>