Package | Description |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.channel.kqueue |
BSD specific transport.
|
io.netty.channel.nio |
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
|
io.netty.util.concurrent |
Utility classes for concurrent / async tasks.
|
Constructor and Description |
---|
SingleThreadEventLoop(EventLoopGroup parent,
java.util.concurrent.Executor executor,
boolean addTaskWakesUp,
int maxPendingTasks,
RejectedExecutionHandler rejectedExecutionHandler) |
SingleThreadEventLoop(EventLoopGroup parent,
java.util.concurrent.ThreadFactory threadFactory,
boolean addTaskWakesUp,
int maxPendingTasks,
RejectedExecutionHandler rejectedExecutionHandler) |
Constructor and Description |
---|
KQueueEventLoop(EventLoopGroup parent,
java.util.concurrent.Executor executor,
int maxEvents,
SelectStrategy strategy,
RejectedExecutionHandler rejectedExecutionHandler) |
KQueueEventLoopGroup(int nThreads,
java.util.concurrent.Executor executor,
EventExecutorChooserFactory chooserFactory,
SelectStrategyFactory selectStrategyFactory,
RejectedExecutionHandler rejectedExecutionHandler) |
Constructor and Description |
---|
NioEventLoop(NioEventLoopGroup parent,
java.util.concurrent.Executor executor,
java.nio.channels.spi.SelectorProvider selectorProvider,
SelectStrategy strategy,
RejectedExecutionHandler rejectedExecutionHandler) |
NioEventLoopGroup(int nThreads,
java.util.concurrent.Executor executor,
EventExecutorChooserFactory chooserFactory,
java.nio.channels.spi.SelectorProvider selectorProvider,
SelectStrategyFactory selectStrategyFactory,
RejectedExecutionHandler rejectedExecutionHandler) |
Modifier and Type | Field and Description |
---|---|
private static RejectedExecutionHandler |
RejectedExecutionHandlers.REJECT |
private RejectedExecutionHandler |
SingleThreadEventExecutor.rejectedExecutionHandler |
Modifier and Type | Method and Description |
---|---|
static RejectedExecutionHandler |
RejectedExecutionHandlers.backoff(int retries,
long backoffAmount,
java.util.concurrent.TimeUnit unit)
Tries to backoff when the task can not be added due restrictions for an configured amount of time.
|
static RejectedExecutionHandler |
RejectedExecutionHandlers.reject()
Returns a
RejectedExecutionHandler that will always just throw a RejectedExecutionException . |
Constructor and Description |
---|
DefaultEventExecutor(EventExecutorGroup parent,
java.util.concurrent.Executor executor,
int maxPendingTasks,
RejectedExecutionHandler rejectedExecutionHandler) |
DefaultEventExecutor(EventExecutorGroup parent,
java.util.concurrent.ThreadFactory threadFactory,
int maxPendingTasks,
RejectedExecutionHandler rejectedExecutionHandler) |
DefaultEventExecutorGroup(int nThreads,
java.util.concurrent.ThreadFactory threadFactory,
int maxPendingTasks,
RejectedExecutionHandler rejectedHandler)
Create a new instance.
|
SingleThreadEventExecutor(EventExecutorGroup parent,
java.util.concurrent.Executor executor,
boolean addTaskWakesUp,
int maxPendingTasks,
RejectedExecutionHandler rejectedHandler)
Create a new instance
|
SingleThreadEventExecutor(EventExecutorGroup parent,
java.util.concurrent.ThreadFactory threadFactory,
boolean addTaskWakesUp,
int maxPendingTasks,
RejectedExecutionHandler rejectedHandler)
Create a new instance
|