FairEmail/app/src/main/java/androidx/lifecycle/Observer.kt

29 lines
902 B
Kotlin
Raw Normal View History

2019-06-29 19:18:24 +00:00
/*
* Copyright (C) 2017 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.
*/
2023-03-09 06:43:39 +00:00
package androidx.lifecycle
2019-06-29 19:18:24 +00:00
/**
2023-03-09 06:43:39 +00:00
* A simple callback that can receive from [LiveData].
2019-06-29 19:18:24 +00:00
*
* @see LiveData LiveData - for a usage description.
2023-03-09 06:43:39 +00:00
*/
fun interface Observer<T> {
2019-06-29 19:18:24 +00:00
/**
2023-03-09 06:43:39 +00:00
* Called when the data is changed is changed to [value].
2019-06-29 19:18:24 +00:00
*/
2023-03-09 06:43:39 +00:00
fun onChanged(value: T)
}