We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 447cfb9 + 115bdb4 commit 2feae7dCopy full SHA for 2feae7d
src/client/impl/SocketFrameHandler_0_9.cs
@@ -72,6 +72,8 @@ public SocketFrameHandler_0_9(AmqpTcpEndpoint endpoint)
72
m_endpoint = endpoint;
73
m_socket = new TcpClient();
74
m_socket.Connect(endpoint.HostName, endpoint.Port);
75
+ // disable Nagle's algorithm, for more consistently low latency
76
+ m_socket.NoDelay = true;
77
78
Stream netstream = m_socket.GetStream();
79
m_reader = new NetworkBinaryReader(netstream);
0 commit comments