andy 0e931a3ac9 一些功能调整
增加tcp协议支持;
增加模拟多用户的功能;
2021-01-18 20:24:19 +08:00

15 lines
278 B
C#

using OnlineUserPool.Model;
using System;
using System.Collections.Generic;
using System.Text;
namespace OnlineUserPool.Hander
{
interface IHandle
{
List<MsgModel> GetVirtualUserData();
void RemoveEndAndAddNewVirtualUser(int customerCount);
}
}