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.
1 parent 96950f7 commit 115bdb4Copy full SHA for 115bdb4
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