Files
frameworks_base/packages/SystemUI/src/com/android/systemui/BootCompleteCache.kt
Fabian Kozynski 1cb4aaea51 Creates a BootCompleteCache
This cache is set by SystemUIApplication on boot and can be queried or
subscribed to.

The cache registration turns into no-op after boot, returning the boot
state instead.

LocationControllerImpl uses this cache to determine if it can query
LocationManager

Test: atest BootCompleteCacheTest
Fixes: 145019350
Change-Id: I2e34e53bfb8beca730cec8da6125988554c659e4
2019-11-26 09:15:44 -05:00

27 lines
905 B
Kotlin

/*
* Copyright (C) 2019 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.systemui
interface BootCompleteCache {
fun isBootComplete(): Boolean
fun addListener(listener: BootCompleteListener): Boolean
fun removeListener(listener: BootCompleteListener)
interface BootCompleteListener {
fun onBootComplete()
}
}