HomeSort by relevance Sort by last modified time
    Searched defs:LiveData (Results 1 - 2 of 2) sorted by null

  /frameworks/support/room/compiler/src/test/data/common/input/
LiveData.java 0 //LiveData interface for tests
3 public class LiveData<T> {
  /frameworks/support/lifecycle/livedata-core/src/main/java/androidx/lifecycle/
LiveData.java 32 * LiveData is a data holder class that can be observed within a given lifecycle.
43 * activities and fragments where they can safely observe LiveData and not worry about leaks:
47 * In addition, LiveData has {@link LiveData#onActive()} and {@link LiveData#onInactive()} methods
49 * This allows LiveData to release any heavy resources when it does not have any Observers that
59 public abstract class LiveData<T> {
138 * owner. The events are dispatched on the main thread. If LiveData already has data
150 * LiveData keeps a strong reference to the observer and the owner as long as the
151 * given LifecycleOwner is not destroyed. When it is destroyed, LiveData removes references t
    [all...]

Completed in 71 milliseconds