Fixed restart

pull/125/head
M66B 6 years ago
parent 8619da79b5
commit 831db4569e

@ -1636,37 +1636,31 @@ public class ServiceSynchronize extends LifecycleService {
} }
private void stop() { private void stop() {
if (main != null) { EntityLog.log(ServiceSynchronize.this, "Main stop " + main);
EntityLog.log(ServiceSynchronize.this, "Main stop " + main); synchronized (state) {
synchronized (state) { state.running = false;
state.running = false; state.notifyAll();
state.notifyAll(); }
}
// stop wait or backoff // stop wait or backoff
main.interrupt(); main.interrupt();
join(main); join(main);
main = null; main = null;
state = null; state = null;
EntityLog.log(ServiceSynchronize.this, "Main stopped " + main); EntityLog.log(ServiceSynchronize.this, "Main stopped " + main);
}
} }
private void restart() { private void restart() {
lifecycle.submit(new Runnable() { if (running)
@Override lifecycle.submit(new Runnable() {
public void run() { @Override
stop(); public void run() {
} stop();
}); start();
lifecycle.submit(new Runnable() { }
@Override });
public void run() {
start();
}
});
} }
private BroadcastReceiver outboxReceiver = new BroadcastReceiver() { private BroadcastReceiver outboxReceiver = new BroadcastReceiver() {

Loading…
Cancel
Save