2025-09-10 15:36:49 +08:00
|
|
|
package com.tongran.agent.client.service;
|
|
|
|
|
|
|
|
|
|
public interface AgentService {
|
|
|
|
|
void systemCollectStart(String data);
|
|
|
|
|
|
|
|
|
|
void systemCollectStop();
|
|
|
|
|
|
|
|
|
|
void switchCollectStart(String data);
|
|
|
|
|
|
|
|
|
|
void switchCollectStop();
|
2025-09-11 18:33:14 +08:00
|
|
|
|
|
|
|
|
void alarmMonitor();
|
2025-09-10 15:36:49 +08:00
|
|
|
}
|