Package org.apache.tomcat.util.threads
Class ThreadPoolExecutor.AbortPolicy
- java.lang.Object
-
- org.apache.tomcat.util.threads.ThreadPoolExecutor.AbortPolicy
-
- All Implemented Interfaces:
ThreadPoolExecutor.RejectedExecutionHandler
- Enclosing class:
- ThreadPoolExecutor
public static class ThreadPoolExecutor.AbortPolicy extends java.lang.Object implements ThreadPoolExecutor.RejectedExecutionHandler
A handler for rejected tasks that throws aRejectedExecutionException
.
-
-
Constructor Summary
Constructors Constructor Description AbortPolicy()
Creates anAbortPolicy
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
rejectedExecution(java.lang.Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException.
-
-
-
Method Detail
-
rejectedExecution
public void rejectedExecution(java.lang.Runnable r, ThreadPoolExecutor e)
Always throws RejectedExecutionException.- Specified by:
rejectedExecution
in interfaceThreadPoolExecutor.RejectedExecutionHandler
- Parameters:
r
- the runnable task requested to be executede
- the executor attempting to execute this task- Throws:
java.util.concurrent.RejectedExecutionException
- always
-
-