You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Passing `true` for `noDelay` or not passing an argument will disable Nagle's algorithm for the socket. Passing false for noDelay will enable Nagle's algorithm.
89
89
*
90
-
* @param {boolean} noDelay
90
+
* @param {boolean} noDelay Default: `true`
91
91
*/
92
-
setNoDelay(noDelay?: boolean): void;
92
+
setNoDelay(noDelay?: boolean): TcpSocket;
93
+
/**
94
+
* Enable/disable keep-alive functionality, and optionally set the initial delay before the first keepalive probe is sent on an idle socket.
0 commit comments