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