Use cached thread pool for simple task

This commit is contained in:
M66B 2018-09-03 08:43:31 +00:00
parent 0c4566ddcf
commit c75079a5ce
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
private Bundle args = null;
private Result stored = null;
private ExecutorService executor = Executors.newFixedThreadPool(10, new ThreadFactory() {
private ExecutorService executor = Executors.newCachedThreadPool(new ThreadFactory() {
@Override
public Thread newThread(@NonNull Runnable runnable) {
Thread thread = new Thread(runnable);