我在我的服务器上使用 http servlet。
我的游戏客户端使用下一个 http 连接:
InetAddress inteAddress = InetAddress.getByName(server);
SocketAddress socketAddress = new InetSocketAddress(inteAddress, port);
// create a socket
socket = new Socket();
// this method will block no more than timeout ms.
int timeoutInMs = 10*1000; // 10 seconds
socket.connect(socketAddress, timeoutInMs);
时间套接字连接= 10秒......但我需要保持连接
我可以为游戏客户端使用什么客户端连接?(寻找最佳实践)