mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Keep mbox export awake
This commit is contained in:
@@ -52,6 +52,7 @@ import java.util.concurrent.Future;
|
||||
public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
private boolean log = true;
|
||||
private boolean count = true;
|
||||
private boolean keepawake = false;
|
||||
|
||||
private String name;
|
||||
private long started;
|
||||
@@ -85,6 +86,11 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
return this;
|
||||
}
|
||||
|
||||
public SimpleTask<T> setKeepAwake(boolean value) {
|
||||
this.keepawake = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
public SimpleTask<T> setExecutor(ExecutorService executor) {
|
||||
this.localExecutor = executor;
|
||||
return this;
|
||||
@@ -183,7 +189,10 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
public void run() {
|
||||
// Run in background thread
|
||||
try {
|
||||
wl.acquire(MAX_WAKELOCK);
|
||||
if (keepawake)
|
||||
wl.acquire();
|
||||
else
|
||||
wl.acquire(MAX_WAKELOCK);
|
||||
|
||||
if (log)
|
||||
Log.i("Executing task=" + name);
|
||||
|
||||
Reference in New Issue
Block a user