| 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). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static InternetProtocolFamily | 
InternetProtocolFamily.valueOf(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. 
 | 
| Constructor and Description | 
|---|
NioDatagramChannelFactory(Executor workerExecutor,
                         InternetProtocolFamily family)
Creates a new instance. 
 | 
NioDatagramChannelFactory(Executor workerExecutor,
                         int workerCount,
                         InternetProtocolFamily family)
Creates a new instance. 
 | 
NioDatagramChannelFactory(InternetProtocolFamily family)
Create a new  
NioDatagramChannelFactory with a Executors.newCachedThreadPool(). | 
NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool,
                         InternetProtocolFamily family)
Creates a new instance. 
 | 
Copyright © 2008-2016 The Netty Project. All Rights Reserved.