mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-15 20:12:04 +01:00
Add PingManager.pingServerIfNecessary()
which is basically the body of the pingServerRunnable available as public part of the API. The intention is to allow 3rd party components (e.g. Android's AlarmManager) to trigger the code.
This commit is contained in:
parent
184604bba2
commit
090f7cfc49
1 changed files with 61 additions and 55 deletions
|
@ -317,13 +317,14 @@ public class PingManager extends Manager {
|
|||
}
|
||||
}
|
||||
|
||||
private final Runnable pingServerRunnable = new Runnable() {
|
||||
private static final int DELTA = 1000; // 1 seconds
|
||||
private static final int TRIES = 3; // 3 tries
|
||||
|
||||
public void run() {
|
||||
LOGGER.fine("ServerPingTask run()");
|
||||
XMPPConnection connection = connection();
|
||||
/**
|
||||
* Ping the server if deemed necessary because automatic server pings are
|
||||
* enabled ({@link #setPingInterval(int)}) and the ping interval has expired.
|
||||
*/
|
||||
public synchronized void pingServerIfNecessary() {
|
||||
final int DELTA = 1000; // 1 seconds
|
||||
final int TRIES = 3; // 3 tries
|
||||
final XMPPConnection connection = connection();
|
||||
if (connection == null) {
|
||||
// connection has been collected by GC
|
||||
// which means we can stop the thread by breaking the loop
|
||||
|
@ -369,7 +370,6 @@ public class PingManager extends Manager {
|
|||
break;
|
||||
}
|
||||
}
|
||||
LOGGER.fine("ServerPingTask res=" + res);
|
||||
if (!res) {
|
||||
for (PingFailedListener l : pingFailedListeners) {
|
||||
l.pingFailed();
|
||||
|
@ -379,9 +379,15 @@ public class PingManager extends Manager {
|
|||
maybeSchedulePingServerTask();
|
||||
}
|
||||
} else {
|
||||
LOGGER.warning("ServerPingTask: XMPPConnection was not authenticated");
|
||||
LOGGER.warning("XMPPConnection was not authenticated");
|
||||
}
|
||||
}
|
||||
|
||||
private final Runnable pingServerRunnable = new Runnable() {
|
||||
public void run() {
|
||||
LOGGER.fine("ServerPingTask run()");
|
||||
pingServerIfNecessary();
|
||||
}
|
||||
};
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue