TCP_NODELAY constant

SocketOption const TCP_NODELAY = const SocketOption._(0)

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

TCP_NODELAY is disabled by default.

Implementation

static const SocketOption TCP_NODELAY = const SocketOption._(0)