class ConnImpl
implements Conn
import { ConnImpl } from "https://deno.land/x/deno@v0.28.0/cli/js/net.ts";
Methods
close(): void
closeRead(): void
closeRead shuts down (shutdown(2)) the reading side of the TCP connection. Most callers should just use close().
closeWrite(): void
closeWrite shuts down (shutdown(2)) the writing side of the TCP connection. Most callers should just use close().
write(p: Uint8Array): Promise<number>