14 lines
250 B
Java
14 lines
250 B
Java
package com.tongran.agent.client.service;
|
|
|
|
public interface AgentService {
|
|
void systemCollectStart(String data);
|
|
|
|
void systemCollectStop();
|
|
|
|
void switchCollectStart(String data);
|
|
|
|
void switchCollectStop();
|
|
|
|
void alarmMonitor();
|
|
}
|