mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
10 lines
230 B
Java
10 lines
230 B
Java
package com.proxgrind.chameleon.callback;
|
|
|
|
public interface FileReadLineCallback {
|
|
//读取完成的结果数组!
|
|
void onReadFinish(String[] line);
|
|
|
|
//读取失败的消息!
|
|
void onReadFail(String msg);
|
|
}
|