|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jboss.netty.channel.socket.oio.OioClientSocketChannelFactory
public class OioClientSocketChannelFactory
A ClientSocketChannelFactory
which creates a client-side blocking
I/O based SocketChannel
. 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.
There is only one type of threads in OioClientSocketChannelFactory
;
worker threads.
Each connected Channel
has a dedicated worker thread, just like a
traditional blocking I/O thread model.
Worker threads are acquired from the Executor
which was specified
when a OioClientSocketChannelFactory
was created (i.e. workerExecutor
.)
Therefore, you should make sure the specified Executor
is able to
lend the sufficient number of threads.
Worker threads are acquired lazily, and then released when there's nothing left to process. All the related resources are also released when the worker threads are released. Therefore, to shut down a service gracefully, you should do the following:
ChannelGroup.close()
, andreleaseExternalResources()
.RejectedExecutionException
and the related resources might not be released properly.
A SocketChannel
created by this factory does not support asynchronous
operations. Any I/O requests such as "connect"
and "write"
will be performed in a blocking manner.
Constructor Summary | |
---|---|
OioClientSocketChannelFactory(Executor workerExecutor)
Creates a new instance. |
Method Summary | |
---|---|
SocketChannel |
newChannel(ChannelPipeline pipeline)
Creates and opens a new Channel and attaches the specified
ChannelPipeline to the new Channel . |
void |
releaseExternalResources()
Releases the external resources that this factory depends on to function. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public OioClientSocketChannelFactory(Executor workerExecutor)
workerExecutor
- the Executor
which will execute the I/O worker threadsMethod Detail |
---|
public SocketChannel newChannel(ChannelPipeline pipeline)
ChannelFactory
Channel
and attaches the specified
ChannelPipeline
to the new Channel
.
newChannel
in interface ChannelFactory
newChannel
in interface ClientSocketChannelFactory
pipeline
- the ChannelPipeline
which is going to be
attached to the new Channel
public void releaseExternalResources()
ChannelFactory
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.
releaseExternalResources
in interface ChannelFactory
releaseExternalResources
in interface ExternalResourceReleasable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |