Class AbstractServerChannel

java.lang.Object
org.jboss.netty.channel.AbstractChannel
org.jboss.netty.channel.AbstractServerChannel
All Implemented Interfaces:
Comparable<Channel>, Channel, ServerChannel
Direct Known Subclasses:
DefaultLocalServerChannel, NioServerSocketChannel, OioServerSocketChannel

public abstract class AbstractServerChannel extends AbstractChannel implements ServerChannel
A skeletal server-side Channel implementation. A server-side Channel does not allow the following operations:
  • Constructor Details

    • AbstractServerChannel

      protected AbstractServerChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink)
      Creates a new instance.
      Parameters:
      factory - the factory which created this channel
      pipeline - the pipeline which is going to be attached to this channel
      sink - the sink which will receive downstream events from the pipeline and send upstream events to the pipeline
  • Method Details