Package org.jboss.netty.channel.socket
Interface ServerSocketChannelFactory
-
- All Superinterfaces:
ChannelFactory,ExternalResourceReleasable,ServerChannelFactory
- All Known Implementing Classes:
NioServerSocketChannelFactory,OioServerSocketChannelFactory
public interface ServerSocketChannelFactory extends ServerChannelFactory
AChannelFactorywhich creates aServerSocketChannel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerSocketChannelnewChannel(ChannelPipeline pipeline)-
Methods inherited from interface org.jboss.netty.channel.ChannelFactory
releaseExternalResources, shutdown
-
-
-
-
Method Detail
-
newChannel
ServerSocketChannel newChannel(ChannelPipeline pipeline)
Description copied from interface:ChannelFactory- Specified by:
newChannelin interfaceChannelFactory- Specified by:
newChannelin interfaceServerChannelFactory- Parameters:
pipeline- theChannelPipelinewhich is going to be attached to the newChannel- Returns:
- the newly open channel
-
-