The JavaDocs for Netty explain ChannelLocal to be similar to ThreadLocal, however I've got some questions about it's usage. ThreadLocal is a static class with static methods that access instance-specific objects. ChannelLocal is not static, have a static internal map or have static methods. The documentation doesn't include an example of accessing ChannelLocal or placing an object into ChannelLocal, so I was hoping someone could give me some insight into it's usage.
Thanks!