JavaDocs for Netty explains ChannelLocal to be similar to ThreadLocal, however I have some questions about this use. ThreadLocal is a static class with static methods that access instance-specific objects. ChannelLocal is not static, has a static internal map, or has static methods. The documentation does not include an example of accessing ChannelLocal or placing an object in ChannelLocal, so I was hoping someone could give me some idea about this usage.
Thanks!
source share