Use dedicated notify executor

pull/210/head
M66B 2 years ago
parent 0b504a1f22
commit 8f02c27009

@ -128,8 +128,10 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
private final MutableLiveData<List<TupleAccountState>> liveAccountState = new MutableLiveData<>(); private final MutableLiveData<List<TupleAccountState>> liveAccountState = new MutableLiveData<>();
private final MediatorState liveAccountNetworkState = new MediatorState(); private final MediatorState liveAccountNetworkState = new MediatorState();
private static final ExecutorService executor = private static final ExecutorService executorService =
Helper.getBackgroundExecutor(1, 1, 0, "sync"); Helper.getBackgroundExecutor(1, 1, 0, "sync");
private static final ExecutorService executorNotify =
Helper.getBackgroundExecutor(0, 1, 3, "notify");
private static final long BACKUP_DELAY = 30 * 1000L; // milliseconds private static final long BACKUP_DELAY = 30 * 1000L; // milliseconds
private static final long PURGE_DELAY = 30 * 1000L; // milliseconds private static final long PURGE_DELAY = 30 * 1000L; // milliseconds
@ -470,7 +472,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
} }
private void init(final TupleAccountNetworkState accountNetworkState) { private void init(final TupleAccountNetworkState accountNetworkState) {
executor.submit(new RunnableEx("state#init") { executorService.submit(new RunnableEx("state#init") {
@Override @Override
public void delegate() { public void delegate() {
long start = new Date().getTime(); long start = new Date().getTime();
@ -529,7 +531,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
}, "sync.account." + accountNetworkState.accountState.id); }, "sync.account." + accountNetworkState.accountState.id);
coreStates.put(accountNetworkState.accountState.id, astate); coreStates.put(accountNetworkState.accountState.id, astate);
executor.submit(new RunnableEx("state#start") { executorService.submit(new RunnableEx("state#start") {
@Override @Override
public void delegate() { public void delegate() {
long start = new Date().getTime(); long start = new Date().getTime();
@ -570,7 +572,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
EntityLog.log(ServiceSynchronize.this, EntityLog.Type.Scheduling, EntityLog.log(ServiceSynchronize.this, EntityLog.Type.Scheduling,
"Service stop=" + accountNetworkState); "Service stop=" + accountNetworkState);
executor.submit(new RunnableEx("state#stop") { executorService.submit(new RunnableEx("state#stop") {
@Override @Override
public void delegate() { public void delegate() {
long start = new Date().getTime(); long start = new Date().getTime();
@ -608,7 +610,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
EntityLog.log(ServiceSynchronize.this, EntityLog.Type.Scheduling, EntityLog.log(ServiceSynchronize.this, EntityLog.Type.Scheduling,
"Service delete=" + accountNetworkState); "Service delete=" + accountNetworkState);
executor.submit(new RunnableEx("state#delete") { executorService.submit(new RunnableEx("state#delete") {
@Override @Override
public void delegate() { public void delegate() {
long start = new Date().getTime(); long start = new Date().getTime();
@ -635,7 +637,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
} }
private void quit(final Integer eventId) { private void quit(final Integer eventId) {
executor.submit(new RunnableEx("state#quit") { executorService.submit(new RunnableEx("state#quit") {
@Override @Override
public void delegate() { public void delegate() {
long start = new Date().getTime(); long start = new Date().getTime();
@ -694,7 +696,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
private final Runnable backup = new RunnableEx("state#backup") { private final Runnable backup = new RunnableEx("state#backup") {
@Override @Override
public void delegate() { public void delegate() {
executor.submit(new RunnableEx("state#backup#exec") { executorService.submit(new RunnableEx("state#backup#exec") {
@Override @Override
public void delegate() { public void delegate() {
long start = new Date().getTime(); long start = new Date().getTime();
@ -846,7 +848,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
mutableUnseenNotify.observe(mowner, new Observer<List<TupleMessageEx>>() { mutableUnseenNotify.observe(mowner, new Observer<List<TupleMessageEx>>() {
@Override @Override
public void onChanged(final List<TupleMessageEx> messages) { public void onChanged(final List<TupleMessageEx> messages) {
executor.submit(new RunnableEx("mutableUnseenNotify") { executorNotify.submit(new RunnableEx("mutableUnseenNotify") {
@Override @Override
public void delegate() { public void delegate() {
try { try {

Loading…
Cancel
Save