mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-14 16:57:24 -05:00
make ClockWatcher thread safe
This commit is contained in:
parent
b0b5fde742
commit
b9ed399036
@ -54,25 +54,27 @@ public class ClockWatcher {
|
|||||||
if (timer == null) {
|
if (timer == null) {
|
||||||
lastSecondTick = System.currentTimeMillis();
|
lastSecondTick = System.currentTimeMillis();
|
||||||
timer = UserThread.runPeriodically(() -> {
|
timer = UserThread.runPeriodically(() -> {
|
||||||
listeners.forEach(Listener::onSecondTick);
|
synchronized (listeners) {
|
||||||
counter++;
|
listeners.forEach(Listener::onSecondTick);
|
||||||
if (counter >= 60) {
|
counter++;
|
||||||
counter = 0;
|
if (counter >= 60) {
|
||||||
listeners.forEach(Listener::onMinuteTick);
|
counter = 0;
|
||||||
}
|
listeners.forEach(Listener::onMinuteTick);
|
||||||
|
|
||||||
long currentTimeMillis = System.currentTimeMillis();
|
|
||||||
long diff = currentTimeMillis - lastSecondTick;
|
|
||||||
if (diff > 1000) {
|
|
||||||
long missedMs = diff - 1000;
|
|
||||||
listeners.forEach(listener -> listener.onMissedSecondTick(missedMs));
|
|
||||||
|
|
||||||
if (missedMs > ClockWatcher.IDLE_TOLERANCE_MS) {
|
|
||||||
log.info("We have been in standby mode for {} sec", missedMs / 1000);
|
|
||||||
listeners.forEach(listener -> listener.onAwakeFromStandby(missedMs));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
long currentTimeMillis = System.currentTimeMillis();
|
||||||
|
long diff = currentTimeMillis - lastSecondTick;
|
||||||
|
if (diff > 1000) {
|
||||||
|
long missedMs = diff - 1000;
|
||||||
|
listeners.forEach(listener -> listener.onMissedSecondTick(missedMs));
|
||||||
|
|
||||||
|
if (missedMs > ClockWatcher.IDLE_TOLERANCE_MS) {
|
||||||
|
log.info("We have been in standby mode for {} sec", missedMs / 1000);
|
||||||
|
listeners.forEach(listener -> listener.onAwakeFromStandby(missedMs));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lastSecondTick = currentTimeMillis;
|
||||||
}
|
}
|
||||||
lastSecondTick = currentTimeMillis;
|
|
||||||
}, 1, TimeUnit.SECONDS);
|
}, 1, TimeUnit.SECONDS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -84,10 +86,14 @@ public class ClockWatcher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void addListener(Listener listener) {
|
public void addListener(Listener listener) {
|
||||||
listeners.add(listener);
|
synchronized (listeners) {
|
||||||
|
listeners.add(listener);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removeListener(Listener listener) {
|
public void removeListener(Listener listener) {
|
||||||
listeners.remove(listener);
|
synchronized (listeners) {
|
||||||
|
listeners.remove(listener);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user