ADD week 5
This commit is contained in:
		| @@ -0,0 +1,29 @@ | ||||
| package androidx.recyclerview.widget; | ||||
|  | ||||
| import androidx.recyclerview.widget.TileList; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| interface ThreadUtil<T> { | ||||
|  | ||||
|     public interface BackgroundCallback<T> { | ||||
|         void loadTile(int i, int i2); | ||||
|  | ||||
|         void recycleTile(TileList.Tile<T> tile); | ||||
|  | ||||
|         void refresh(int i); | ||||
|  | ||||
|         void updateRange(int i, int i2, int i3, int i4, int i5); | ||||
|     } | ||||
|  | ||||
|     public interface MainThreadCallback<T> { | ||||
|         void addTile(int i, TileList.Tile<T> tile); | ||||
|  | ||||
|         void removeTile(int i, int i2); | ||||
|  | ||||
|         void updateItemCount(int i, int i2); | ||||
|     } | ||||
|  | ||||
|     BackgroundCallback<T> getBackgroundProxy(BackgroundCallback<T> backgroundCallback); | ||||
|  | ||||
|     MainThreadCallback<T> getMainThreadProxy(MainThreadCallback<T> mainThreadCallback); | ||||
| } | ||||
		Reference in New Issue
	
	Block a user