AsyncListDiffer.ListListener

interface AsyncListDiffer.ListListener<T>


Listener for when the current List is updated.

Parameters
<T>

Type of items in List

Summary

Public functions

Unit
onCurrentListChanged(
    previousList: (Mutable)List<T!>,
    currentList: (Mutable)List<T!>
)

Called after the current List has been updated.

Public functions

onCurrentListChanged

Added in 1.1.0
fun onCurrentListChanged(
    previousList: (Mutable)List<T!>,
    currentList: (Mutable)List<T!>
): Unit

Called after the current List has been updated.

Parameters
previousList: (Mutable)List<T!>

The previous list.

currentList: (Mutable)List<T!>

The new current list.