mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 11:01:23 +01:00
Limit number of tasks when limiting query threads
This commit is contained in:
@@ -21,6 +21,7 @@ package eu.faircode.email;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
|
||||
@@ -33,6 +34,7 @@ import androidx.lifecycle.LifecycleOwner;
|
||||
import androidx.lifecycle.LifecycleService;
|
||||
import androidx.lifecycle.OnLifecycleEvent;
|
||||
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
|
||||
import androidx.preference.PreferenceManager;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
@@ -54,11 +56,9 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
private String name;
|
||||
private Future<?> future;
|
||||
|
||||
private static ExecutorService executor = null;
|
||||
private static final List<SimpleTask> tasks = new ArrayList<>();
|
||||
|
||||
private static final ExecutorService executor =
|
||||
Helper.getBackgroundExecutor(Runtime.getRuntime().availableProcessors(), "task");
|
||||
|
||||
static final String ACTION_TASK_COUNT = BuildConfig.APPLICATION_ID + ".ACTION_TASK_COUNT";
|
||||
|
||||
public SimpleTask<T> setLog(boolean log) {
|
||||
@@ -117,6 +117,13 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
onException(args, ex);
|
||||
}
|
||||
|
||||
if (executor == null) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
int threads = prefs.getInt("query_threads", Runtime.getRuntime().availableProcessors());
|
||||
Log.i("Task threads=" + threads);
|
||||
executor = Helper.getBackgroundExecutor(threads, "task");
|
||||
}
|
||||
|
||||
future = executor.submit(new Runnable() {
|
||||
private Object data;
|
||||
private long elapse;
|
||||
|
||||
Reference in New Issue
Block a user