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