Observer

interface Observer<in T>

Represents an observer that can be notified of changes.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun onChanged(value: T)

Called when the initial observation of live data is called and the observed value subsequently changes.