Java API Tutorial - 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.

// ww  w.j a v  a2  s.  co 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();
  }
}

The code above generates the following result.