Package org.jboss.netty.channel
Interface ServerChannelFactory
-
- All Superinterfaces:
ChannelFactory
,ExternalResourceReleasable
- All Known Subinterfaces:
LocalServerChannelFactory
,ServerSocketChannelFactory
- All Known Implementing Classes:
DefaultLocalServerChannelFactory
,NioServerSocketChannelFactory
,OioServerSocketChannelFactory
public interface ServerChannelFactory extends ChannelFactory
AChannelFactory
that creates aServerChannel
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerChannel
newChannel(ChannelPipeline pipeline)
-
Methods inherited from interface org.jboss.netty.channel.ChannelFactory
releaseExternalResources, shutdown
-
-
-
-
Method Detail
-
newChannel
ServerChannel newChannel(ChannelPipeline pipeline)
Description copied from interface:ChannelFactory
- Specified by:
newChannel
in interfaceChannelFactory
- Parameters:
pipeline
- theChannelPipeline
which is going to be attached to the newChannel
- Returns:
- the newly open channel
-
-