Merge "Move ServiceConnector job timeouts to the job handler thread" am: 336f21d53d

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2629381

Change-Id: Ifb8741eef236555a2d8dec5ae66b1b3d559ec174
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2023-06-26 15:25:20 +00:00
committed by Automerger Merge Worker

View File

@@ -745,6 +745,10 @@ public interface ServiceConnector<I extends IInterface> {
boolean mAsync = false;
private String mDebugName;
{
// The timeout handler must be set before any calls to set timeouts on the
// AndroidFuture, to ensure they are posted on the proper thread.
setTimeoutHandler(getJobHandler());
long requestTimeout = getRequestTimeoutMs();
if (requestTimeout > 0) {
orTimeout(requestTimeout, TimeUnit.MILLISECONDS);