Animatroller.ExpanderCommunication.NettyServerHandler.ChannelActive C# (CSharp) 메소드

ChannelActive() 공개 메소드

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

            this.clientConnectedInvoked = false;

            base.ChannelActive(context);
        }