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.
35 lines
822 B
35 lines
822 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("127.0.0.1", int.Parse("4567"));
|
|
|
|
Task.Run(() =>
|
|
{
|
|
client.Connect();
|
|
_PadarClient = client;
|
|
Log.Info($"succeed to connect");
|
|
});
|
|
}
|
|
|
|
|
|
} |