/// <summary>
 /// Channel have been bound to a specific address.
 /// </summary>
 /// <param name="ctx">Context unique for this handler/channel combination.</param>
 /// <param name="e">Event information</param>
 protected abstract void HandleBound(IChannelHandlerContext ctx, BoundEvent e);
Beispiel #2
0
 protected override void HandleBound(IChannelHandlerContext ctx, BoundEvent e)
 {
     var evt = new ConnectEvent();
     SendDownstream(evt);
 }
Beispiel #3
0
 /// <summary>
 /// Channel have been bound to a specific address.
 /// </summary>
 /// <param name="ctx">Context unique for this handler/channel combination.</param>
 /// <param name="e">Event information</param>
 protected override void HandleBound(IChannelHandlerContext ctx, BoundEvent e)
 {
 }