Package 

Interface AsyncListDiffer.ListListener

    • Method Summary

      Modifier and Type Method Description
      abstract void onCurrentListChanged(@NonNull() List<T> previousList, @NonNull() List<T> currentList) Called after the current List has been updated.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onCurrentListChanged

         abstract void onCurrentListChanged(@NonNull() List<T> previousList, @NonNull() List<T> currentList)

        Called after the current List has been updated.

        Parameters:
        previousList - The previous list.
        currentList - The new current list.