Package org.jboss.netty.channel.local
Class LocalServerChannelSink
- java.lang.Object
-
- org.jboss.netty.channel.AbstractChannelSink
-
- org.jboss.netty.channel.local.LocalServerChannelSink
-
- All Implemented Interfaces:
ChannelSink
final class LocalServerChannelSink extends AbstractChannelSink
-
-
Constructor Summary
Constructors Constructor Description LocalServerChannelSink()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static void
bind(DefaultLocalServerChannel channel, ChannelFuture future, LocalAddress localAddress)
private static void
close(DefaultLocalServerChannel channel, ChannelFuture future)
void
eventSunk(ChannelPipeline pipeline, ChannelEvent e)
Invoked byChannelPipeline
when a downstreamChannelEvent
has reached its terminal (the head of the pipeline).private static void
handleAcceptedChannel(ChannelEvent e)
private static void
handleServerChannel(ChannelEvent e)
-
Methods inherited from class org.jboss.netty.channel.AbstractChannelSink
exceptionCaught, execute, isFireExceptionCaughtLater
-
-
-
-
Method Detail
-
eventSunk
public void eventSunk(ChannelPipeline pipeline, ChannelEvent e) throws java.lang.Exception
Description copied from interface:ChannelSink
Invoked byChannelPipeline
when a downstreamChannelEvent
has reached its terminal (the head of the pipeline).- Throws:
java.lang.Exception
-
handleServerChannel
private static void handleServerChannel(ChannelEvent e)
-
handleAcceptedChannel
private static void handleAcceptedChannel(ChannelEvent e)
-
bind
private static void bind(DefaultLocalServerChannel channel, ChannelFuture future, LocalAddress localAddress)
-
close
private static void close(DefaultLocalServerChannel channel, ChannelFuture future)
-
-