You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
783 B

5 months ago
using Autofac;
using HybirdFrameworkCore.Autofac;
using HybirdFrameworkCore.Autofac.Attribute;
using log4net;
namespace Service.Padar.Client;
[Scope]
public class PadarMgr
{
private static readonly ILog Log = LogManager.GetLogger(typeof(PadarMgr));
public static PadarClient _PadarClient;
public static void InitClient()
{
//TODO::查询 服务器 连接
Task.Run(() => { ConnClient(); });
}
private static void ConnClient()
{
PadarClient client = AppInfo.Container.Resolve<PadarClient>();
client.InitBootstrap("NetAddr", int.Parse("port"));
Task.Run(() =>
{
client.Connect();
_PadarClient = client;
Log.Info($"succeed to connect");
});
}
}