| 9 | public interface Callback { |
| 10 | |
| 11 | public interface CommonCallback<ResultType> extends Callback { |
| 12 | void onSuccess(ResultType result); |
| 13 | |
| 14 | void onError(Throwable ex, boolean isOnCallback); |
| 15 | |
| 16 | void onCancelled(CancelledException cex); |
| 17 | |
| 18 | void onFinished(); |
| 19 | } |
| 20 | |
| 21 | public interface TypedCallback<ResultType> extends CommonCallback<ResultType> { |
| 22 | Type getLoadType(); |
nothing calls this directly
no outgoing calls
no test coverage detected