Class NioDatagramChannelFactory
- All Implemented Interfaces:
ChannelFactory, DatagramChannelFactory, ExternalResourceReleasable
DatagramChannelFactory that creates a NIO-based connectionless
DatagramChannel. It utilizes the non-blocking I/O mode which
was introduced with NIO to serve many number of concurrent connections
efficiently.
How threads work
There is only one thread type in a NioDatagramChannelFactory;
worker threads.
Worker threads
One NioDatagramChannelFactory can have one or more worker
threads. A worker thread performs non-blocking read and write for one or
more DatagramChannels in a non-blocking mode.
Life cycle of threads and graceful shutdown
All worker threads are acquired from the Executor which was specified
when a NioDatagramChannelFactory was created. Therefore, you should
make sure the specified Executor is able to lend the sufficient
number of threads. It is the best bet to specify
a cached thread pool.
All worker threads are acquired lazily, and then released when there's
nothing left to process. All the related resources such as Selector
are also released when the worker threads are released. Therefore, to shut
down a service gracefully, you should do the following:
- close all channels created by the factory usually using
ChannelGroup.close(), and - call
releaseExternalResources().
RejectedExecutionException
and the related resources might not be released properly.
Limitation
Multicast is not supported. Please use OioDatagramChannelFactory
instead.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final InternetProtocolFamilyprivate booleanprivate final NioDatagramPipelineSinkprivate final WorkerPool<NioDatagramWorker> -
Constructor Summary
ConstructorsConstructorDescriptionCreate a newNioDatagramChannelFactorywith aExecutors.newCachedThreadPool()and without preferredInternetProtocolFamily.NioDatagramChannelFactory(Executor workerExecutor) Creates a new instance.NioDatagramChannelFactory(Executor workerExecutor, int workerCount) Creates a new instance.NioDatagramChannelFactory(Executor workerExecutor, int workerCount, InternetProtocolFamily family) Creates a new instance.NioDatagramChannelFactory(Executor workerExecutor, InternetProtocolFamily family) Creates a new instance.Create a newNioDatagramChannelFactorywith aExecutors.newCachedThreadPool().NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool) Creates a new instance.NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool, InternetProtocolFamily family) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionnewChannel(ChannelPipeline pipeline) voidReleases the external resources that this factory depends on to function.private voidvoidshutdown()Shudown the ChannelFactory and all the resource it created internal.
-
Field Details
-
sink
-
workerPool
-
family
-
releasePool
private boolean releasePool
-
-
Constructor Details
-
NioDatagramChannelFactory
public NioDatagramChannelFactory()Create a newNioDatagramChannelFactorywith aExecutors.newCachedThreadPool()and without preferredInternetProtocolFamily. Please note that theInternetProtocolFamilyof the channel will be platform (and possibly configuration) dependent and therefore unspecified. UseNioDatagramChannelFactory(InternetProtocolFamily)if unsure. SeeNioDatagramChannelFactory(Executor) -
NioDatagramChannelFactory
Create a newNioDatagramChannelFactorywith aExecutors.newCachedThreadPool(). SeeNioDatagramChannelFactory(Executor) -
NioDatagramChannelFactory
Creates a new instance. Calling this constructor is same with callingNioDatagramChannelFactory(Executor, int)with 2 * the number of available processors in the machine. The number of available processors is obtained byRuntime.availableProcessors().Please note that the
InternetProtocolFamilyof the channel will be platform (and possibly configuration) dependent and therefore unspecified. UseNioDatagramChannelFactory(Executor, InternetProtocolFamily)if unsure.- Parameters:
workerExecutor- theExecutorwhich will execute the I/O worker threads
-
NioDatagramChannelFactory
Creates a new instance.Please note that the
InternetProtocolFamilyof the channel will be platform (and possibly configuration) dependent and therefore unspecified. UseNioDatagramChannelFactory(Executor, int, InternetProtocolFamily)if unsure.- Parameters:
workerExecutor- theExecutorwhich will execute the I/O worker threadsworkerCount- the maximum number of I/O worker threads
-
NioDatagramChannelFactory
Creates a new instance.Please note that the
InternetProtocolFamilyof the channel will be platform (and possibly configuration) dependent and therefore unspecified. UseNioDatagramChannelFactory(WorkerPool, InternetProtocolFamily)if unsure.- Parameters:
workerPool- theWorkerPoolwhich will be used to obtain theNioDatagramWorkerthat execute the I/O worker threads
-
NioDatagramChannelFactory
Creates a new instance. Calling this constructor is same with callingNioDatagramChannelFactory(Executor, int)with 2 * the number of available processors in the machine. The number of available processors is obtained byRuntime.availableProcessors().- Parameters:
workerExecutor- theExecutorwhich will execute the I/O worker threadsfamily- theInternetProtocolFamilyto use. This should be used for UDP multicast. Be aware that this option is only considered when running on java7+
-
NioDatagramChannelFactory
public NioDatagramChannelFactory(Executor workerExecutor, int workerCount, InternetProtocolFamily family) Creates a new instance.- Parameters:
workerExecutor- theExecutorwhich will execute the I/O worker threadsworkerCount- the maximum number of I/O worker threadsfamily- theInternetProtocolFamilyto use. This should be used for UDP multicast. Be aware that this option is only considered when running on java7+
-
NioDatagramChannelFactory
public NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool, InternetProtocolFamily family) Creates a new instance.- Parameters:
workerPool- theWorkerPoolwhich will be used to obtain theWorkerthat execute the I/O worker threadsfamily- theInternetProtocolFamilyto use. This should be used for UDP multicast. Be aware that this option is only considered when running on java7+
-
-
Method Details
-
newChannel
Description copied from interface:ChannelFactory- Specified by:
newChannelin interfaceChannelFactory- Specified by:
newChannelin interfaceDatagramChannelFactory- Parameters:
pipeline- theChannelPipelinewhich is going to be attached to the newChannel- Returns:
- the newly open channel
-
shutdown
public void shutdown()Description copied from interface:ChannelFactoryShudown the ChannelFactory and all the resource it created internal.- Specified by:
shutdownin interfaceChannelFactory
-
releaseExternalResources
public void releaseExternalResources()Description copied from interface:ChannelFactoryReleases the external resources that this factory depends on to function. An external resource is a resource that this factory didn't create by itself. For example,Executors that you specified in the factory constructor are external resources. You can call this method to release all external resources conveniently when the resources are not used by this factory or any other part of your application. An unexpected behavior will be resulted in if the resources are released when there's an open channel which is managed by this factory. This will also callChannelFactory.shutdown()before do any action- Specified by:
releaseExternalResourcesin interfaceChannelFactory- Specified by:
releaseExternalResourcesin interfaceExternalResourceReleasable
-
releasePool
private void releasePool()
-