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.
36 lines
883 B
36 lines
883 B
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.AutoReconnect = true;
|
|
//client.InitBootstrap("192.168.3.55", int.Parse("2048"));
|
|
client.InitBootstrap("127.0.0.1", int.Parse("2048"));
|
|
Task.Run(() =>
|
|
{
|
|
client.Connect();
|
|
_PadarClient = client;//
|
|
Log.Info($"succeed to connect Padar");
|
|
});
|
|
}
|
|
|
|
|
|
}
|