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.

37 lines
769 B

using DotNetty.Buffers;
using DotNetty.Transport.Channels;
using log4net;
7 months ago
namespace HybirdFrameworkDriver.ChargerServer;
public class IoSession
{
private readonly ILog Log = LogManager.GetLogger(typeof(IoSession));
private IChannel Channel { get; }
private String IpAddr { get; }
public String Key { get; set; }
private bool Reconnected { get; set; }
public IoSession(IChannel channel)
{
this.Channel = channel;
this.IpAddr = ChannelUtils.GetIp(channel);
}
public void Send(IByteBuffer buffer)
{
Channel.WriteAndFlushAsync(buffer);
}
public bool IsClosed()
{
return !Channel.Open || !Channel.Active;
}
public void Close()
{
Channel?.CloseAsync();
}
}