Java Socket.setTcpNoDelay(boolean on)
Syntax
Socket.setTcpNoDelay(boolean on) has the following syntax.
public void setTcpNoDelay(boolean on) throws SocketException
Example
In the following code shows how to use Socket.setTcpNoDelay(boolean on) method.
// www .ja va 2s. c o m
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();
}
}