Java Socket.getTcpNoDelay()
Syntax
Socket.getTcpNoDelay() has the following syntax.
public boolean getTcpNoDelay() throws SocketException
Example
In the following code shows how to use Socket.getTcpNoDelay() method.
/*from w ww . java 2s. c om*/
import java.net.Socket;
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
client.setTcpNoDelay(true);
System.out.println(client.getTcpNoDelay());
client.close();
}
}