Class RejectedExecutionHandlers
java.lang.Object
io.netty.util.concurrent.RejectedExecutionHandlers
Expose helper methods which create different
RejectedExecutionHandlers.-
Method Summary
Modifier and TypeMethodDescriptionstatic RejectedExecutionHandlerTries to backoff when the task can not be added due restrictions for an configured amount of time.static RejectedExecutionHandlerreject()Returns aRejectedExecutionHandlerthat will always just throw aRejectedExecutionException.
-
Method Details
-
reject
Returns aRejectedExecutionHandlerthat will always just throw aRejectedExecutionException. -
backoff
Tries to backoff when the task can not be added due restrictions for an configured amount of time. This is only done if the task was added from outside of the event loop which meansEventExecutor.inEventLoop()returnsfalse.
-