|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object org.jboss.netty.channel.ChannelLocal<T>
public class ChannelLocal<T>
一个Channel
的本地全局变量.认为这个是ThreadLocal
的变异,只是键是Channel
而不是
Thread.currentThread()
.不同点是访问变量时你必须指定访问的Channel
.
或者你可以使用 ChannelHandlerContext.attachment
属性,它表现更好.
构造方法摘要 | |
---|---|
ChannelLocal()
创建一个 Channel 的本地变量. |
方法摘要 | |
---|---|
T |
get(Channel channel)
返回该变量的值. |
T |
remove(Channel channel)
移除变量. |
T |
set(Channel channel,
T value)
设置该变量的值. |
T |
setIfAbsent(Channel channel,
T value)
只有当没有值被设置时才设置该变量. |
从类 java.lang.Object 继承的方法 |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public ChannelLocal()
Channel
的本地变量.
方法详细信息 |
---|
public T get(Channel channel)
public T set(Channel channel, T value)
null
.public T setIfAbsent(Channel channel, T value)
null
.如果设置失败返回存在的值.public T remove(Channel channel)
null
.
|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |