Merge "Build JobStatus objects outside the lock" into nyc-dev

This commit is contained in:
Chris Tate
2016-05-31 18:36:48 +00:00
committed by Android (Google) Code Review

View File

@@ -223,10 +223,11 @@ public class JobServiceContext extends IJobCallback.Stub implements ServiceConne
* stop executing.
*/
JobStatus getRunningJob() {
final JobStatus job;
synchronized (mLock) {
return mRunningJob == null ?
null : new JobStatus(mRunningJob);
job = mRunningJob;
}
return job == null ? null : new JobStatus(job);
}
/** Called externally when a job that was scheduled for execution should be cancelled. */