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);
| }
|
|