Package akka.remote.transport.netty
Interface TcpHandlers
-
- All Superinterfaces:
CommonHandlers
,NettyHelpers
public interface TcpHandlers extends CommonHandlers
INTERNAL API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssociationHandle
createHandle(org.jboss.netty.channel.Channel channel, Address localAddress, Address remoteAddress)
LoggingAdapter
log()
void
onDisconnect(org.jboss.netty.channel.ChannelHandlerContext ctx, org.jboss.netty.channel.ChannelStateEvent e)
void
onException(org.jboss.netty.channel.ChannelHandlerContext ctx, org.jboss.netty.channel.ExceptionEvent e)
void
onMessage(org.jboss.netty.channel.ChannelHandlerContext ctx, org.jboss.netty.channel.MessageEvent e)
void
registerListener(org.jboss.netty.channel.Channel channel, AssociationHandle.HandleEventListener listener, org.jboss.netty.buffer.ChannelBuffer msg, java.net.InetSocketAddress remoteSocketAddress)
-
Methods inherited from interface akka.remote.transport.netty.CommonHandlers
init, onOpen, transport
-
Methods inherited from interface akka.remote.transport.netty.NettyHelpers
onConnect, transformException
-
-
-
-
Method Detail
-
createHandle
AssociationHandle createHandle(org.jboss.netty.channel.Channel channel, Address localAddress, Address remoteAddress)
- Specified by:
createHandle
in interfaceCommonHandlers
-
log
LoggingAdapter log()
-
onDisconnect
void onDisconnect(org.jboss.netty.channel.ChannelHandlerContext ctx, org.jboss.netty.channel.ChannelStateEvent e)
- Specified by:
onDisconnect
in interfaceNettyHelpers
-
onException
void onException(org.jboss.netty.channel.ChannelHandlerContext ctx, org.jboss.netty.channel.ExceptionEvent e)
- Specified by:
onException
in interfaceNettyHelpers
-
onMessage
void onMessage(org.jboss.netty.channel.ChannelHandlerContext ctx, org.jboss.netty.channel.MessageEvent e)
- Specified by:
onMessage
in interfaceNettyHelpers
-
registerListener
void registerListener(org.jboss.netty.channel.Channel channel, AssociationHandle.HandleEventListener listener, org.jboss.netty.buffer.ChannelBuffer msg, java.net.InetSocketAddress remoteSocketAddress)
- Specified by:
registerListener
in interfaceCommonHandlers
-
-