Skip to main content
Module

std/node/net.ts>Server#close

Deno standard library
Go to Latest
method Server.prototype.close
import { Server } from "https://deno.land/std@0.158.0/node/net.ts";

Stops the server from accepting new connections and keeps existing connections. This function is asynchronous, the server is finally closed when all connections are ended and the server emits a "close" event. The optional callback will be called once the "close" event occurs. Unlike that event, it will be called with an Error as its only argument if the server was not open when it was closed.

Parameters

optional
cb: (err?: Error) => void

Called when the server is closed.