Java API Tutorial - 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  .  ja va2s  .  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();
  }
}

The code above generates the following result.