服务端的TigerApi 框架,基于.NET6 2024 版本
YangYuGang
8 天以前 8bda6bb83d2ebcf25c3ced361fdd97219bf615f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Autofac;
using Rhea.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
 
namespace Tiger.IBusiness
{
    public interface IMonitorBus
    {
        public void StartMonitors();
        public void StopMonitors();
        public IClientMonitor GetClientMonitor();
    }
}