Android: Webapp register and get splash screen AsyncTasks to thread pool
Currently, AsyncTask.execute() defaults to the SERIAL_EXECUTOR. This exector is good for preventing concurrency errors since it guarantees serial execution, but bad for performance since the entire app shares this single queue. It looks like these callsites can use the THREAD_POOL_EXECUTOR instead, since these usages don't appear to rely on the concurrency guarantees that SERIAL_EXECUTOR provides. Bug: 869907 Change-Id: Iaf227dc516d1b2c850b9b17ce5d43302ab6532b2 Reviewed-on: https://chromium-review.googlesource.com/1161968Reviewed-by:agrieve <agrieve@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Commit-Queue: Sam Maier <smaier@chromium.org> Cr-Commit-Position: refs/heads/master@{#580780}
Showing
Please register or sign in to comment