SortedList.BatchedCallback
public class SortedList.BatchedCallback<T2> extends SortedList.Callback
| java.lang.Object | ||
| ↳ | androidx.recyclerview.widget.SortedList.Callback | |
| ↳ | androidx.recyclerview.widget.SortedList.BatchedCallback |
A callback implementation that can batch notify events dispatched by the SortedList.
This class can be useful if you want to do multiple operations on a SortedList but don't want to dispatch each event one by one, which may result in a performance issue.
For example, if you are going to add multiple items to a SortedList, BatchedCallback call convert individual onInserted(index, 1) calls into one onInserted(index, N) if items are added into consecutive indices. This change can help RecyclerView resolve changes much more easily.
If consecutive changes in the SortedList are not suitable for batching, BatchingCallback dispatches them as soon as such case is detected. After your edits on the SortedList is complete, you must always call dispatchLastEvent to flush all changes to the Callback.
Summary
Public constructors |
|---|
BatchedCallback(SortedList.Callback<T2> wrappedCallback)Creates a new BatchedCallback that wraps the provided Callback. |
Public methods |
|
|---|---|
boolean |
areContentsTheSame(T2 oldItem, T2 newItem)Called by the SortedList when it wants to check whether two items have the same data or not. |
boolean |
areItemsTheSame(T2 item1, T2 item2)Called by the SortedList to decide whether two objects represent the same Item or not. |
int |
compare(T2 o1, T2 o2)Similar to java.util.Comparator#compare(Object, Object), should compare two and return how they should be ordered. |
void |
This method dispatches any pending event notifications to the wrapped Callback. |
@Nullable Object |
getChangePayload(T2 item1, T2 item2)When #areItemsTheSame(T2, T2) returns true} for two items and #areContentsTheSame(T2, T2) returns false for them, calls this method to get a payload about the change. |
void |
onChanged(int position, int count)Called by the SortedList when the item at the given position is updated. |
void |
|
void |
onInserted(int position, int count)Called when count} number of items are inserted at the given position. |
void |
onMoved(int fromPosition, int toPosition)Called when an item changes its position in the list. |
void |
onRemoved(int position, int count)Called when count} number of items are removed from the given position. |
Inherited methods |
||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||
Public constructors
BatchedCallback
public BatchedCallback(SortedList.Callback<T2> wrappedCallback)
Creates a new BatchedCallback that wraps the provided Callback.
| Parameters | |
|---|---|
SortedList.Callback<T2> wrappedCallback |
The Callback which should received the data change callbacks. Other method calls (e.g. compare from the SortedList are directly forwarded to this Callback. |
Public methods
areContentsTheSame
public boolean areContentsTheSame(T2 oldItem, T2 newItem)
Called by the SortedList when it wants to check whether two items have the same data or not. SortedList uses this information to decide whether it should call #onChanged(int, int) or not.
SortedList uses this method to check equality instead of Object#equals(Object) so that you can change its behavior depending on your UI.
For example, if you are using SortedList with a RecyclerView.Adapter, you should return whether the items' visual representations are the same or not.
areItemsTheSame
public boolean areItemsTheSame(T2 item1, T2 item2)
Called by the SortedList to decide whether two objects represent the same Item or not.
For example, if your items have unique ids, this method should check their equality.
compare
public int compare(T2 o1, T2 o2)
Similar to java.util.Comparator#compare(Object, Object), should compare two and return how they should be ordered.
dispatchLastEvent
public void dispatchLastEvent()
This method dispatches any pending event notifications to the wrapped Callback. You must always call this method after you are done with editing the SortedList.
getChangePayload
public @Nullable Object getChangePayload(T2 item1, T2 item2)
When #areItemsTheSame(T2, T2) returns true} for two items and #areContentsTheSame(T2, T2) returns false for them, calls this method to get a payload about the change.
For example, if you are using with , you can return the particular field that changed in the item and your ItemAnimator can use that information to run the correct animation.
Default implementation returns null}.
onChanged
public void onChanged(int position, int count)
Called by the SortedList when the item at the given position is updated.
onInserted
public void onInserted(int position, int count)
Called when count} number of items are inserted at the given position.