You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int index = 0;
while (true) {
String message = clazz.getMessage("come on" + index);
System.out.println("client receive message .... : " + message);
index++;
if (index % 10 == 0) {
Thread.sleep(1);
}
}
会抛出:警告: EXCEPTION, please implement org.stefan.snrpc.client.SnNettyRpcConnection.exceptionCaught() for proper handling.
org.jboss.netty.handler.timeout.ReadTimeoutException
然后程序卡死。
The text was updated successfully, but these errors were encountered:
client端采用这种方式请求时:
会抛出:警告: EXCEPTION, please implement org.stefan.snrpc.client.SnNettyRpcConnection.exceptionCaught() for proper handling.
org.jboss.netty.handler.timeout.ReadTimeoutException
然后程序卡死。
The text was updated successfully, but these errors were encountered: