Azure / DotNetty

DotNetty project – a port of netty, event-driven asynchronous network application framework
Other
4.09k stars 977 forks source link

Support for more options to store state per ChannelHandlerContext #288

Closed maulik13 closed 7 years ago

maulik13 commented 7 years ago

For example, Netty provides ChannelLocal and attachement to ChannelHandlerContext. Is there any roadmap for adding these to DotNetty?

yyjdelete commented 7 years ago

ChannelLocal is already removed in netty 4.0, use AttributeKey instead. see also https://github.com/netty/netty/wiki/New-and-noteworthy-in-4.0#attributemap

maulik13 commented 7 years ago

@yyjdelete Thanks for the update. I looked deeper in DotNetty and do see that AttributeMap is implemented. I will have a go at it.