public class OioEventLoopGroup extends ThreadPerChannelEventLoopGroup
EventLoopGroup
这是用来处理OIO Channel
的。
每Channel
将由其自己的EventLoop
处理,以不阻止其他人。
Constructor and Description |
---|
OioEventLoopGroup()
创建一个没有限制的新的 OioEventLoopGroup 。
|
OioEventLoopGroup(int maxChannels)
创建一个新的 OioEventLoopGroup 。
|
OioEventLoopGroup(int maxChannels, java.util.concurrent.Executor executor)
创建一个新的 OioEventLoopGroup 。
|
OioEventLoopGroup(int maxChannels, java.util.concurrent.ThreadFactory threadFactory)
创建一个新的 OioEventLoopGroup 。
|
awaitTermination, isShutdown, isShuttingDown, isTerminated, iterator, newChild, next, register, register, register, shutdown, shutdownGracefully, terminationFuture
execute, invokeAll, invokeAll, invokeAny, invokeAny, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdownGracefully, shutdownNow, submit, submit, submit
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdownGracefully, shutdownNow, submit, submit, submit
public OioEventLoopGroup()
OioEventLoopGroup
。
public OioEventLoopGroup(int maxChannels)
OioEventLoopGroup
。
maxChannels
- 此实例处理的最大通道数。
一旦你尝试注册一个新Channel
,最高为超过它会抛出一个ChannelException
对ThreadPerChannelEventLoopGroup.register(Channel)
和ThreadPerChannelEventLoopGroup.register(ChannelPromise)
方法。
使用0
不限制
public OioEventLoopGroup(int maxChannels, java.util.concurrent.Executor executor)
OioEventLoopGroup
。
maxChannels
- 此实例处理的最大通道数。
一旦你尝试注册一个新Channel
,最高为超过它会抛出一个ChannelException
对ThreadPerChannelEventLoopGroup.register(Channel)
和ThreadPerChannelEventLoopGroup.register(ChannelPromise)
方法。
使用0
不限制
executor
- Executor
用于创建处理注册的Channel
s的新的Thread
实例
public OioEventLoopGroup(int maxChannels, java.util.concurrent.ThreadFactory threadFactory)
OioEventLoopGroup
。
maxChannels
- 此实例处理的最大通道数。
一旦你尝试注册一个新的Channel
,并且最大值超过,它将在ThreadPerChannelEventLoopGroup.register(Channel)
和ThreadPerChannelEventLoopGroup.register(ChannelPromise)
方法上抛出一个ChannelException
。
使用0
不限制
threadFactory
- ThreadFactory
用于创建处理注册的Channel
s的新的Thread
实例
Copyright © 2008–2018 The Netty Project. All rights reserved.