-
public interface RejectedExecutionHandler
Similar toRejectedExecutionHandler
but specific toSingleThreadEventExecutor
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
rejected(Runnable task, SingleThreadEventExecutor executor)
Called when someone tried to add a task toSingleThreadEventExecutor
but this failed due capacity restrictions.
-
-
-
Method Detail
-
rejected
void rejected(Runnable task, SingleThreadEventExecutor executor)
Called when someone tried to add a task toSingleThreadEventExecutor
but this failed due capacity restrictions.
-
-