blob: 274b8e56209834601fe9cfffafb4a7fb64def3bf [file] [log] [blame]
/*
* Copyright (C) 2020 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 com.android.server.devicestate;
import android.annotation.NonNull;
/**
* Interface for the component responsible for supplying the current device state as well as
* configuring the state of the system in response to device state changes.
*
* @see DeviceStateManagerService
*/
public interface DeviceStatePolicy {
/** Returns the provider of device states. */
DeviceStateProvider getDeviceStateProvider();
/**
* Configures the system into the provided state. Guaranteed not to be called again until the
* {@code onComplete} callback has been executed.
*
* @param state the state the system should be configured for.
* @param onComplete a callback that must be triggered once the system has been properly
* configured to match the supplied state.
*/
void configureDeviceForState(int state, @NonNull Runnable onComplete);
}