Пример #1
0
            public void ChannelRegistered(IFABChannelHandlerContext context)
            {
                if (this.firstRegistration)
                {
                    this.firstRegistration = false;
                    // We are now registered to the EventLoop. It's time to call the callbacks for the ChannelHandlers,
                    // that were added before the registration was done.
                    this.pipeline.CallHandlerAddedForAllHandlers();
                }

                context.FireChannelRegistered();
            }
Пример #2
0
 public virtual void ChannelRegistered(IFABChannelHandlerContext context)
 {
     context.FireChannelRegistered();
 }