tcpNoDelay constant Null safety

SocketOption const tcpNoDelay

Enable or disable no-delay on the socket. If tcpNoDelay is enabled, the socket will not buffer data internally, but instead write each data chunk as an individual TCP packet.

tcpNoDelay is disabled by default.

Implementation

static const SocketOption tcpNoDelay = const SocketOption._(0);