yujian
2020-05-13 3b9e1385a90ae84f97f2a4b8b7a35a6b13c01062
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.yeshi.fanli.service.inter.monitor;
 
import com.yeshi.fanli.entity.monitor.ClientAPIMonitor;
 
/**
 * 监控服务
 * 
 * @author Administrator
 *
 */
public interface MonitorService {
 
    /**
     * 添加客户端API的监控
     * 
     * @param monitor
     */
    public void addClientAPIMonitor(ClientAPIMonitor monitor);
 
}