Interface TransportHandler
-
- All Known Subinterfaces:
ClientHandler,MessageHandler
- All Known Implementing Classes:
MessageRecvManager
public interface TransportHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexceptionCaught(TransportException cause, ConnectionId connectionId)Invoked when the channel associated with the given connectionId has an exception is thrown processing message.voidonChannelActive(ConnectionId connectionId)Invoked when the channel associated with the given connectionId is active.voidonChannelInactive(ConnectionId connectionId)Invoked when the channel associated with the given connectionId is inactive.
-
-
-
Method Detail
-
onChannelActive
void onChannelActive(ConnectionId connectionId)
Invoked when the channel associated with the given connectionId is active.
-
onChannelInactive
void onChannelInactive(ConnectionId connectionId)
Invoked when the channel associated with the given connectionId is inactive. No further requests will come from this channel.
-
exceptionCaught
void exceptionCaught(TransportException cause, ConnectionId connectionId)
Invoked when the channel associated with the given connectionId has an exception is thrown processing message.
-
-