rk
5 天以前 3471ef4c3fce9d53ca7f3bbebde477eb3eb884a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.example.datalibrary.listener;
 
import com.example.datalibrary.model.User;
 
import java.util.List;
 
public interface DBLoadListener {
 
    void onStart(int successCount);
 
    void onLoad(int finishCount, int successCount, float progress);
 
    void onComplete(List<User> features , int successCount);
 
    void onFail(int finishCount, int successCount, List<User> features);
}