Uses of Class
org.jboss.netty.channel.socket.InternetProtocolFamily
-
Packages that use InternetProtocolFamily Package Description org.jboss.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.org.jboss.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of InternetProtocolFamily in org.jboss.netty.channel.socket
Methods in org.jboss.netty.channel.socket that return InternetProtocolFamily Modifier and Type Method Description static InternetProtocolFamily
InternetProtocolFamily. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InternetProtocolFamily[]
InternetProtocolFamily. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of InternetProtocolFamily in org.jboss.netty.channel.socket.nio
Fields in org.jboss.netty.channel.socket.nio declared as InternetProtocolFamily Modifier and Type Field Description private InternetProtocolFamily
NioDatagramChannelFactory. family
Methods in org.jboss.netty.channel.socket.nio with parameters of type InternetProtocolFamily Modifier and Type Method Description static java.net.ProtocolFamily
ProtocolFamilyConverter. convert(InternetProtocolFamily family)
Convert theInternetProtocolFamily
.private static java.nio.channels.DatagramChannel
NioDatagramChannel. openNonBlockingChannel(InternetProtocolFamily family)
Constructors in org.jboss.netty.channel.socket.nio with parameters of type InternetProtocolFamily Constructor Description NioDatagramChannel(ChannelFactory factory, ChannelPipeline pipeline, ChannelSink sink, NioDatagramWorker worker, InternetProtocolFamily family)
NioDatagramChannelFactory(java.util.concurrent.Executor workerExecutor, int workerCount, InternetProtocolFamily family)
Creates a new instance.NioDatagramChannelFactory(java.util.concurrent.Executor workerExecutor, InternetProtocolFamily family)
Creates a new instance.NioDatagramChannelFactory(InternetProtocolFamily family)
Create a newNioDatagramChannelFactory
with aExecutors.newCachedThreadPool()
.NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool, InternetProtocolFamily family)
Creates a new instance.
-