Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/netzo/deno.d.ts>Deno.shutdown

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
function Deno.shutdown
import { Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { shutdown } = Deno;

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>