Observer
interface Observer<T : Any!>
androidx.lifecycle.Observer |
A simple callback that can receive from LiveData
.
Summary
Public methods | |
---|---|
abstract Unit |
onChanged(t: T) Called when the data is changed. |
Public methods
onChanged
abstract fun onChanged(t: T): Unit
Called when the data is changed.
Parameters | |
---|---|
t |
T: The new data |