类 AbstractChannelHandlerDelegate
- java.lang.Object
-
- com.alibaba.dubbo.remoting.transport.AbstractChannelHandlerDelegate
-
- 所有已实现的接口:
ChannelHandler
,ChannelHandlerDelegate
- 直接已知子类:
DecodeHandler
,HeartbeatHandler
,MultiMessageHandler
public abstract class AbstractChannelHandlerDelegate extends Object implements ChannelHandlerDelegate
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 void
caught(Channel channel, Throwable exception)
on exception caught.void
connected(Channel channel)
on channel connected.void
disconnected(Channel channel)
on channel disconnected.ChannelHandler
getHandler()
void
received(Channel channel, Object message)
on message received.void
sent(Channel channel, Object message)
on message sent.
-
-
-
方法详细资料
-
getHandler
public ChannelHandler getHandler()
- 指定者:
getHandler
在接口中ChannelHandlerDelegate
-
connected
public void connected(Channel channel) throws RemotingException
从接口复制的说明:ChannelHandler
on channel connected.- 指定者:
connected
在接口中ChannelHandler
- 参数:
channel
- channel.- 抛出:
RemotingException
-
disconnected
public void disconnected(Channel channel) throws RemotingException
从接口复制的说明:ChannelHandler
on channel disconnected.- 指定者:
disconnected
在接口中ChannelHandler
- 参数:
channel
- channel.- 抛出:
RemotingException
-
sent
public void sent(Channel channel, Object message) throws RemotingException
从接口复制的说明:ChannelHandler
on message sent.- 指定者:
sent
在接口中ChannelHandler
- 参数:
channel
- channel.message
- message.- 抛出:
RemotingException
-
received
public void received(Channel channel, Object message) throws RemotingException
从接口复制的说明:ChannelHandler
on message received.- 指定者:
received
在接口中ChannelHandler
- 参数:
channel
- channel.message
- message.- 抛出:
RemotingException
-
caught
public void caught(Channel channel, Throwable exception) throws RemotingException
从接口复制的说明:ChannelHandler
on exception caught.- 指定者:
caught
在接口中ChannelHandler
- 参数:
channel
- channel.exception
- exception.- 抛出:
RemotingException
-
-