Android: SmartSelectionRequests explicitly on SERIAL_EXECUTOR
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 this callsite is stuck on the SERIAL_EXECUTOR. We make this requirement explicit. Bug: 869907 Change-Id: I651a27380b514600793a248babd41aa556983fb1 Reviewed-on: https://chromium-review.googlesource.com/1162714Reviewed-by:Pedro Amaral <amaralp@chromium.org> Reviewed-by:
Shimi Zhang <ctzsm@chromium.org> Commit-Queue: Sam Maier <smaier@chromium.org> Cr-Commit-Position: refs/heads/master@{#581307}
Showing
Please register or sign in to comment