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
AServerSocketChannelFactory
which 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
ServerSocketChannel
has 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 acceptedChannel
to one of the worker threads that theOioServerSocketChannelFactory
manages.Worker threads
Each connected
Channel
has 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
Executor
s which were specified when aOioServerSocketChannelFactory
was created. Boss threads are acquired from thebossExecutor
, and worker threads are acquired from theworkerExecutor
. Therefore, you should make sure the specifiedExecutor
s 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()
.
RejectedExecutionException
and the related resources might not be released properly.Limitation
A
ServerSocketChannel
created 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.Executor
bossExecutor
private boolean
shutdownExecutor
private ChannelSink
sink
private java.util.concurrent.Executor
workerExecutor
-
Constructor Summary
Constructors Constructor Description OioServerSocketChannelFactory()
Create a newOioServerSocketChannelFactory
with 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 ServerSocketChannel
newChannel(ChannelPipeline pipeline)
void
releaseExternalResources()
Releases the external resources that this factory depends on to function.void
shutdown()
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 newOioServerSocketChannelFactory
with 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
- theExecutor
which will execute the boss threadsworkerExecutor
- theExecutor
which 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
- theExecutor
which will execute the boss threadsworkerExecutor
- theExecutor
which will execute the I/O worker threadsdeterminer
- theThreadNameDeterminer
to set the thread names.
-
-
Method Detail
-
newChannel
public ServerSocketChannel newChannel(ChannelPipeline pipeline)
Description copied from interface:ChannelFactory
- Specified by:
newChannel
in interfaceChannelFactory
- Specified by:
newChannel
in interfaceServerChannelFactory
- Specified by:
newChannel
in interfaceServerSocketChannelFactory
- Parameters:
pipeline
- theChannelPipeline
which is going to be attached to the newChannel
- Returns:
- the newly open channel
-
shutdown
public void shutdown()
Description copied from interface:ChannelFactory
Shudown the ChannelFactory and all the resource it created internal.- Specified by:
shutdown
in interfaceChannelFactory
-
releaseExternalResources
public void releaseExternalResources()
Description copied from interface:ChannelFactory
Releases 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,Executor
s 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:
releaseExternalResources
in interfaceChannelFactory
- Specified by:
releaseExternalResources
in interfaceExternalResourceReleasable
-
-