mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
waitForCondition() → waitForConditionOrThrowConnectionException()
The method was already renamed, but not in ModularXmppClientToServerConnectionInternal.
This commit is contained in:
parent
a356e91108
commit
ac788592a6
3 changed files with 3 additions and 3 deletions
|
@ -199,7 +199,7 @@ public final class ModularXmppClientToServerConnection extends AbstractXMPPConne
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void waitForCondition(Supplier<Boolean> condition, String waitFor)
|
public void waitForConditionOrThrowConnectionException(Supplier<Boolean> condition, String waitFor)
|
||||||
throws InterruptedException, SmackException, XMPPException {
|
throws InterruptedException, SmackException, XMPPException {
|
||||||
ModularXmppClientToServerConnection.this.waitForConditionOrThrowConnectionException(condition, waitFor);
|
ModularXmppClientToServerConnection.this.waitForConditionOrThrowConnectionException(condition, waitFor);
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,7 +110,7 @@ public abstract class ModularXmppClientToServerConnectionInternal {
|
||||||
|
|
||||||
public abstract void asyncGo(Runnable runnable);
|
public abstract void asyncGo(Runnable runnable);
|
||||||
|
|
||||||
public abstract void waitForCondition(Supplier<Boolean> condition, String waitFor) throws InterruptedException, SmackException, XMPPException;
|
public abstract void waitForConditionOrThrowConnectionException(Supplier<Boolean> condition, String waitFor) throws InterruptedException, SmackException, XMPPException;
|
||||||
|
|
||||||
public abstract void notifyWaitingThreads();
|
public abstract void notifyWaitingThreads();
|
||||||
|
|
||||||
|
|
|
@ -1165,7 +1165,7 @@ public class XmppTcpTransportModule extends ModularXmppClientToServerConnectionM
|
||||||
}
|
}
|
||||||
|
|
||||||
private void waitForHandshakeFinished() throws InterruptedException, CertificateException, SSLException, SmackException, XMPPException {
|
private void waitForHandshakeFinished() throws InterruptedException, CertificateException, SSLException, SmackException, XMPPException {
|
||||||
connectionInternal.waitForCondition(() -> isHandshakeFinished(), "TLS handshake to finish");
|
connectionInternal.waitForConditionOrThrowConnectionException(() -> isHandshakeFinished(), "TLS handshake to finish");
|
||||||
|
|
||||||
if (handshakeStatus == TlsHandshakeStatus.failed) {
|
if (handshakeStatus == TlsHandshakeStatus.failed) {
|
||||||
throw handshakeException;
|
throw handshakeException;
|
||||||
|
|
Loading…
Reference in a new issue