Files

31 lines
646 B
Java
Raw Permalink Normal View History

2020-08-27 12:21:09 +08:00
package com.proxgrind.chameleon.defined;
import java.io.IOException;
import com.proxgrind.devices.DriverInterface;
/**
* 接口,定义变色龙的执行器的功能!
*
* @author DXL
*/
public interface IChameleonExecutor {
boolean initExecutor(DriverInterface com);
byte[] requestChameleon(String at, int timeout, boolean xmodemMode);
byte[] requestChameleon(int timeout, int length);
int requestChameleon(String at, int timeout) throws IOException;
DriverInterface getDriver();
int clear(int timeout);
void close();
String getVersion();
boolean isConnected();
}