Animatroller.ExpanderCommunication.NettyServerHandler.ChannelActive C# (CSharp) Method

ChannelActive() public method

public ChannelActive ( IChannelHandlerContext context ) : void
context IChannelHandlerContext
return void
        public override void ChannelActive(IChannelHandlerContext context)
        {
            log.Info($"Channel {context.Channel.Id.AsShortText()} connected");

            this.clientConnectedInvoked = false;

            base.ChannelActive(context);
        }