You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
338 B

/**
* 可监控接口
* 定义了设备的监控功能
*/
public interface Monitored {
/**
* 开始监控
*/
void startMonitoring();
/**
* 停止监控
*/
void stopMonitoring();
/**
* 获取监控状态
* @return 监控状态描述
*/
String getMonitoringStatus();
}