AsyncListDiffer.ListListener

public interface AsyncListDiffer.ListListener<T>


Listener for when the current List is updated.

Parameters
<T>

Type of items in List

Summary

Public methods

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

Called after the current List has been updated.

Public methods

onCurrentListChanged

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

Called after the current List has been updated.

Parameters
@NonNull List<T> previousList

The previous list.

@NonNull List<T> currentList

The new current list.