Most visited

Recently visited

Added in API level 1

ThreadPoolExecutor.DiscardPolicy

public static class ThreadPoolExecutor.DiscardPolicy
extends Object implements RejectedExecutionHandler

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


A handler for rejected tasks that silently discards the rejected task.

Summary

Public constructors

ThreadPoolExecutor.DiscardPolicy()

Creates a DiscardPolicy.

Public methods

void rejectedExecution(Runnable r, ThreadPoolExecutor e)

Does nothing, which has the effect of discarding task r.

Inherited methods

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

Public constructors

ThreadPoolExecutor.DiscardPolicy

Added in API level 1
ThreadPoolExecutor.DiscardPolicy ()

Creates a DiscardPolicy.

Public methods

rejectedExecution

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

Does nothing, which has the effect of discarding task r.

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

Hooray!