Exemplo n.º 1
0
 /**
  * This method dispatches any pending event notifications to the wrapped Callback. You
  * <b>must</b> always call this method after you are done with editing the SortedList.
  */
 public void dispatchLastEvent() {
   mBatchingListUpdateCallback.dispatchLastEvent();
 }
Exemplo n.º 2
0
 @Override
 public void onMoved(int fromPosition, int toPosition) {
   mBatchingListUpdateCallback.onMoved(fromPosition, toPosition);
 }
Exemplo n.º 3
0
 @Override
 public void onChanged(int position, int count) {
   mBatchingListUpdateCallback.onChanged(position, count, null);
 }
Exemplo n.º 4
0
 @Override
 public void onRemoved(int position, int count) {
   mBatchingListUpdateCallback.onRemoved(position, count);
 }