Package org.jboss.netty.channel.socket
Interface DatagramChannelFactory
-
- All Superinterfaces:
ChannelFactory
,ExternalResourceReleasable
- All Known Implementing Classes:
NioDatagramChannelFactory
,OioDatagramChannelFactory
public interface DatagramChannelFactory extends ChannelFactory
AChannelFactory
which creates aDatagramChannel
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatagramChannel
newChannel(ChannelPipeline pipeline)
-
Methods inherited from interface org.jboss.netty.channel.ChannelFactory
releaseExternalResources, shutdown
-
-
-
-
Method Detail
-
newChannel
DatagramChannel 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
-
-