Add files via upload

This commit is contained in:
DXL
2020-08-27 11:22:49 +08:00
committed by GitHub
parent 7eeb1f6179
commit 51d272e989
13 changed files with 162 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
package com.proxgrind.chameleon.callback;
public interface DumpCallback {
/*
* 在dump内容无误时的回调
*/
void showContents(String[] contents);
/*
* dump读取失败
* */
void onFileException();
/*
* dump格式错误!
* */
void onFormatNoSupport();
/*
* 成功后的回调
* */
void onSuccess();
}