Most visited

Recently visited

Added in API level 1

ThreadPoolExecutor.AbortPolicy

public static class ThreadPoolExecutor.AbortPolicy
extends Object implements RejectedExecutionHandler

java.lang.Object
   ↳ java.util.concurrent.ThreadPoolExecutor.AbortPolicy


A handler for rejected tasks that throws a RejectedExecutionException.

Summary

Public constructors

ThreadPoolExecutor.AbortPolicy()

Creates an AbortPolicy.

Public methods

void rejectedExecution(Runnable r, ThreadPoolExecutor e)

Always throws RejectedExecutionException.

Inherited methods

From class java.lang.Object
From interface java.util.concurrent.RejectedExecutionHandler

Public constructors

ThreadPoolExecutor.AbortPolicy

Added in API level 1
ThreadPoolExecutor.AbortPolicy ()

Creates an AbortPolicy.

Public methods

rejectedExecution

Added in API level 1
void rejectedExecution (Runnable r, 
                ThreadPoolExecutor e)

Always throws RejectedExecutionException.

Parameters
r Runnable: the runnable task requested to be executed
e ThreadPoolExecutor: the executor attempting to execute this task
Throws
RejectedExecutionException always

Hooray!