yujian
2019-09-25 011d53f9f3d08af8cd622585ce40eb880f313aaf
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);
 
}