【发布时间】:2021-10-11 04:21:54
【问题描述】:
如果IP地址改变或连接失败,如何正确重新连接?
我正在尝试重新连接 okhttp-ws
.....
@Override
public void onFailure(IOException e, okhttp3.Response response) {
try {
connecting();
} catch (Exception e1) {
Timber.e(e1, "onFailure");
}
}
@Override
public void onClose(int code, String reason) {
Timber.d("Connection unexpectedly closed");
connecting();
}
public void connecting() {
if (wsClient == null) {
wsClient = builder.build();
if (call != null) call.cancel();
call = WebSocketCall.create(wsClient, request);
try {
lock.lockInterruptibly();
try { call.enqueue(listener);
} finally {
lock.unlock();
}
} catch (InterruptedException e) {
Timber.e(e, "connecting error");
}
}
我收到一个错误
java.lang.RuntimeException: 无法启动服务...(有 额外)}:java.util.concurrent.RejectedExecutionException:任务 okhttp3.RealCall$AsyncCall@3f946389 被拒绝 java.util.concurrent.ThreadPoolExecutor@d784f8e[终止,池大小 = 0,活动线程 = 0,排队任务 = 0,已完成任务 = 1] 在 android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3320)
【问题讨论】: