WindChat/windchat-connector/src/main/java/com/windchat/im/connector/codec/parser/ChannelConst.java

18 lines
413 B
Java
Raw Normal View History

2019-11-27 23:33:33 +08:00
package com.windchat.im.connector.codec.parser;
2019-07-29 23:42:16 +08:00
2019-11-27 23:36:54 +08:00
import com.windchat.common.channel.ChannelSession;
2019-07-29 23:42:16 +08:00
import io.netty.util.AttributeKey;
/**
* bind ChannelSession to channel by AttributeKey
*
* @author Sam{@link an.guoyue254@gmail.com}
* @since 2018-01-08 16:14:29
*/
public class ChannelConst {
public static final AttributeKey<ChannelSession> CHANNELSESSION = AttributeKey.valueOf("channelSession");
}