类 ConnectionOrderedChannelHandler
- java.lang.Object
-
- com.alibaba.dubbo.remoting.transport.dispatcher.WrappedChannelHandler
-
- com.alibaba.dubbo.remoting.transport.dispatcher.connection.ConnectionOrderedChannelHandler
-
- 所有已实现的接口:
ChannelHandler,ChannelHandlerDelegate
public class ConnectionOrderedChannelHandler extends WrappedChannelHandler
-
-
构造器概要
构造器 构造器 说明 ConnectionOrderedChannelHandler(ChannelHandler handler, URL url)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidcaught(Channel channel, Throwable exception)on exception caught.voidconnected(Channel channel)on channel connected.voiddisconnected(Channel channel)on channel disconnected.voidreceived(Channel channel, Object message)on message received.-
从类继承的方法 com.alibaba.dubbo.remoting.transport.dispatcher.WrappedChannelHandler
close, getExecutor, getExecutorService, getHandler, getUrl, sent
-
-
-
-
构造器详细资料
-
ConnectionOrderedChannelHandler
public ConnectionOrderedChannelHandler(ChannelHandler handler, URL url)
-
-
方法详细资料
-
connected
public void connected(Channel channel) throws RemotingException
从接口复制的说明:ChannelHandleron channel connected.- 指定者:
connected在接口中ChannelHandler- 覆盖:
connected在类中WrappedChannelHandler- 参数:
channel- channel.- 抛出:
RemotingException
-
disconnected
public void disconnected(Channel channel) throws RemotingException
从接口复制的说明:ChannelHandleron channel disconnected.- 指定者:
disconnected在接口中ChannelHandler- 覆盖:
disconnected在类中WrappedChannelHandler- 参数:
channel- channel.- 抛出:
RemotingException
-
received
public void received(Channel channel, Object message) throws RemotingException
从接口复制的说明:ChannelHandleron message received.- 指定者:
received在接口中ChannelHandler- 覆盖:
received在类中WrappedChannelHandler- 参数:
channel- channel.message- message.- 抛出:
RemotingException
-
caught
public void caught(Channel channel, Throwable exception) throws RemotingException
从接口复制的说明:ChannelHandleron exception caught.- 指定者:
caught在接口中ChannelHandler- 覆盖:
caught在类中WrappedChannelHandler- 参数:
channel- channel.exception- exception.- 抛出:
RemotingException
-
-