Class OioServerSocketChannelFactory
- java.lang.Object
-
- org.jboss.netty.channel.socket.oio.OioServerSocketChannelFactory
-
- All Implemented Interfaces:
ChannelFactory,ServerChannelFactory,ServerSocketChannelFactory,ExternalResourceReleasable
public class OioServerSocketChannelFactory extends java.lang.Object implements ServerSocketChannelFactory
AServerSocketChannelFactorywhich creates a server-side blocking I/O basedServerSocketChannel. It utilizes the good old blocking I/O API which is known to yield better throughput and latency when there are relatively small number of connections to serve.How threads work
There are two types of threads in a
OioServerSocketChannelFactory; one is boss thread and the other is worker thread.Boss threads
Each bound
ServerSocketChannelhas its own boss thread. For example, if you opened two server ports such as 80 and 443, you will have two boss threads. A boss thread accepts incoming connections until the port is unbound. Once a connection is accepted successfully, the boss thread passes the acceptedChannelto one of the worker threads that theOioServerSocketChannelFactorymanages.Worker threads
Each connected
Channelhas a dedicated worker thread, just like a traditional blocking I/O thread model.Life cycle of threads and graceful shutdown
All threads are acquired from the
Executors which were specified when aOioServerSocketChannelFactorywas created. Boss threads are acquired from thebossExecutor, and worker threads are acquired from theworkerExecutor. Therefore, you should make sure the specifiedExecutors are able to lend the sufficient number of threads.Both boss and worker threads are acquired lazily, and then released when there's nothing left to process. All the related resources are also released when the boss and worker threads are released. Therefore, to shut down a service gracefully, you should do the following:
- unbind all channels created by the factory,
- close all child channels accepted by the unbound channels,
(these two steps so far is usually done using
ChannelGroup.close()) - call
releaseExternalResources().
RejectedExecutionExceptionand the related resources might not be released properly.Limitation
A
ServerSocketChannelcreated by this factory and its child channels do not support asynchronous operations. Any I/O requests such as"write"will be performed in a blocking manner.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.util.concurrent.ExecutorbossExecutorprivate booleanshutdownExecutorprivate ChannelSinksinkprivate java.util.concurrent.ExecutorworkerExecutor
-
Constructor Summary
Constructors Constructor Description OioServerSocketChannelFactory()Create a newOioServerSocketChannelFactorywith aExecutors.newCachedThreadPool()for the boss and worker executor.OioServerSocketChannelFactory(java.util.concurrent.Executor bossExecutor, java.util.concurrent.Executor workerExecutor)Creates a new instance.OioServerSocketChannelFactory(java.util.concurrent.Executor bossExecutor, java.util.concurrent.Executor workerExecutor, ThreadNameDeterminer determiner)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServerSocketChannelnewChannel(ChannelPipeline pipeline)voidreleaseExternalResources()Releases the external resources that this factory depends on to function.voidshutdown()Shudown the ChannelFactory and all the resource it created internal.
-
-
-
Field Detail
-
bossExecutor
final java.util.concurrent.Executor bossExecutor
-
workerExecutor
private final java.util.concurrent.Executor workerExecutor
-
sink
private final ChannelSink sink
-
shutdownExecutor
private boolean shutdownExecutor
-
-
Constructor Detail
-
OioServerSocketChannelFactory
public OioServerSocketChannelFactory()
Create a newOioServerSocketChannelFactorywith aExecutors.newCachedThreadPool()for the boss and worker executor. SeeOioServerSocketChannelFactory(Executor, Executor)
-
OioServerSocketChannelFactory
public OioServerSocketChannelFactory(java.util.concurrent.Executor bossExecutor, java.util.concurrent.Executor workerExecutor)Creates a new instance.- Parameters:
bossExecutor- theExecutorwhich will execute the boss threadsworkerExecutor- theExecutorwhich will execute the I/O worker threads
-
OioServerSocketChannelFactory
public OioServerSocketChannelFactory(java.util.concurrent.Executor bossExecutor, java.util.concurrent.Executor workerExecutor, ThreadNameDeterminer determiner)Creates a new instance.- Parameters:
bossExecutor- theExecutorwhich will execute the boss threadsworkerExecutor- theExecutorwhich will execute the I/O worker threadsdeterminer- theThreadNameDeterminerto set the thread names.
-
-
Method Detail
-
newChannel
public ServerSocketChannel newChannel(ChannelPipeline pipeline)
Description copied from interface:ChannelFactory- Specified by:
newChannelin interfaceChannelFactory- Specified by:
newChannelin interfaceServerChannelFactory- Specified by:
newChannelin interfaceServerSocketChannelFactory- 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
-
-