| /* |
| * Copyright (C) 2021 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| package android.hardware.automotive.vehicle; |
| |
| /** |
| * This describes how value of property can change. |
| */ |
| @VintfStability |
| @Backing(type="int") |
| enum VehiclePropertyChangeMode { |
| /** |
| * Property of this type must never be changed. Subscription is not supported |
| * for these properties. |
| */ |
| STATIC = 0x00, |
| |
| /** |
| * Properties of this type must report when there is a change. |
| * IVehicle#get call must return the current value. |
| * Set operation for this property is assumed to be asynchronous. When the |
| * property is read (using IVehicle#get) after IVehicle#set, it may still |
| * return old value until underlying H/W backing this property has actually |
| * changed the state. Once state is changed, the property must dispatch |
| * changed value as event. |
| */ |
| ON_CHANGE = 0x01, |
| |
| /** |
| * Properties of this type change continuously and require a fixed rate of |
| * sampling to retrieve the data. Implementers may choose to send extra |
| * notifications on significant value changes. |
| */ |
| CONTINUOUS = 0x02, |
| } |