1/*
2 * Copyright (C) 2017 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
17syntax = "proto2";
18
19package android.app.job;
20
21// This file is for JobScheduler enums inside the app directory. If you're
22// adding enums for system-server-side code, use the file in
23// frameworks/base/core/proto/android/server/job.
24option java_outer_classname = "JobProtoEnums";
25option java_multiple_files = true;
26
27// Reasons a job is stopped.
28// Primarily used in android.app.job.JobParameters.java.
29enum StopReasonEnum {
30    STOP_REASON_UNKNOWN = -1;
31    STOP_REASON_CANCELLED = 0;
32    STOP_REASON_CONSTRAINTS_NOT_SATISFIED = 1;
33    STOP_REASON_PREEMPT = 2;
34    STOP_REASON_TIMEOUT = 3;
35    STOP_REASON_DEVICE_IDLE = 4;
36    STOP_REASON_DEVICE_THERMAL = 5;
37}
38