Package live

Interface LiveList.Listener<T>

All Known Implementing Classes:
SortedLiveList
Enclosing interface:
LiveList<T>

public static interface LiveList.Listener<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onChanged(int index, T oldValue, T newValue)
     
    void
    onInserted(int index, T value)
     
    void
    onRemoved(int index, T oldValue)
     
  • Method Details

    • onInserted

      void onInserted(int index, T value)
    • onChanged

      void onChanged(int index, T oldValue, T newValue)
    • onRemoved

      void onRemoved(int index, T oldValue)