Shuwdown executors after executing all tasks.
Bug: 14113276 Change-Id: Ie42ef30ffe5767ca434db4669efad2027b474e74
This commit is contained in:
parent
ba635ad30d
commit
b21edc4402
1 changed files with 7 additions and 2 deletions
|
@ -47,8 +47,13 @@ public class ExecutorUtils {
|
||||||
public static void shutdownAllExecutors() {
|
public static void shutdownAllExecutors() {
|
||||||
synchronized(sExecutorMap) {
|
synchronized(sExecutorMap) {
|
||||||
for (final PrioritizedSerialExecutor executor : sExecutorMap.values()) {
|
for (final PrioritizedSerialExecutor executor : sExecutorMap.values()) {
|
||||||
executor.shutdown();
|
executor.execute(new Runnable() {
|
||||||
sExecutorMap.remove(executor);
|
@Override
|
||||||
|
public void run() {
|
||||||
|
executor.shutdown();
|
||||||
|
sExecutorMap.remove(executor);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue