• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2022 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.server.art;
18 
19 import android.annotation.NonNull;
20 import android.app.job.JobParameters;
21 import android.app.job.JobService;
22 import android.os.Build;
23 
24 import androidx.annotation.RequiresApi;
25 
26 import com.android.server.LocalManagerRegistry;
27 
28 /**
29  * Entry point for the callback from the job scheduler. This class is instantiated by the system
30  * automatically.
31  *
32  * @hide
33  */
34 @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
35 public class BackgroundDexoptJobService extends JobService {
36     @Override
onStartJob(@onNull JobParameters params)37     public boolean onStartJob(@NonNull JobParameters params) {
38         return getJob().onStartJob(this, params);
39     }
40 
41     @Override
onStopJob(@onNull JobParameters params)42     public boolean onStopJob(@NonNull JobParameters params) {
43         return getJob().onStopJob(params);
44     }
45 
46     @NonNull
getJob()47     static BackgroundDexoptJob getJob() {
48         return LocalManagerRegistry.getManager(ArtManagerLocal.class).getBackgroundDexoptJob();
49     }
50 }
51