mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
chore: make new TCP conn methods unstable (#13686)
This commit is contained in:
parent
be9c2fe267
commit
02c95d367e
3 changed files with 19 additions and 4 deletions
4
ext/net/lib.deno_net.d.ts
vendored
4
ext/net/lib.deno_net.d.ts
vendored
|
@ -50,10 +50,6 @@ declare namespace Deno {
|
|||
/** Shuts down (`shutdown(2)`) the write side of the connection. Most
|
||||
* callers should just use `close()`. */
|
||||
closeWrite(): Promise<void>;
|
||||
/** Enable/disable the use of Nagle's algorithm. Defaults to true */
|
||||
setNoDelay(nodelay?: boolean): void;
|
||||
/** Enable/disable keep-alive functionality */
|
||||
setKeepAlive(keepalive?: boolean): void;
|
||||
|
||||
readonly readable: ReadableStream<Uint8Array>;
|
||||
readonly writable: WritableStream<Uint8Array>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue