Liking cljdoc? Tell your friends :D

jdk.util.concurrent.ThreadPoolExecutor$DiscardOldestPolicy

A handler for rejected tasks that discards the oldest unhandled request and then retries execute, unless the executor is shut down, in which case the task is discarded.

A handler for rejected tasks that discards the oldest unhandled
request and then retries execute, unless the executor
is shut down, in which case the task is discarded.
raw docstring

->discard-oldest-policyclj

(->discard-oldest-policy)

Constructor.

Creates a DiscardOldestPolicy for the given executor.

Constructor.

Creates a DiscardOldestPolicy for the given executor.
raw docstring

rejected-executionclj

(rejected-execution this r e)

Obtains and ignores the next task that the executor would otherwise execute, if one is immediately available, and then retries execution of task r, unless the executor is shut down, in which case task r is instead discarded.

r - the runnable task requested to be executed - java.lang.Runnable e - the executor attempting to execute this task - java.util.concurrent.ThreadPoolExecutor

Obtains and ignores the next task that the executor
 would otherwise execute, if one is immediately available,
 and then retries execution of task r, unless the executor
 is shut down, in which case task r is instead discarded.

r - the runnable task requested to be executed - `java.lang.Runnable`
e - the executor attempting to execute this task - `java.util.concurrent.ThreadPoolExecutor`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close