Java Socket.getSoLinger()
Syntax
Socket.getSoLinger() has the following syntax.
public int getSoLinger() throws SocketException
Example
In the following code shows how to use Socket.getSoLinger() method.
import java.net.Socket;
/*from www .j a v a 2s.co m*/
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
client.setSoLinger(true,1000);
System.out.println(client.getSoLinger());
client.close();
}
}