OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadPoolExecutor
(Results
1 - 25
of
81
) sorted by null
1
2
3
4
/libcore/luni/src/main/java/java/util/concurrent/
RejectedExecutionHandler.java
10
* A handler for tasks that cannot be executed by a {@link
ThreadPoolExecutor
}.
18
* Method that may be invoked by a {@link
ThreadPoolExecutor
} when
19
* {@link
ThreadPoolExecutor
#execute execute} cannot accept a
32
void rejectedExecution(Runnable r,
ThreadPoolExecutor
executor);
Executors.java
66
return new
ThreadPoolExecutor
(nThreads, nThreads,
129
return new
ThreadPoolExecutor
(nThreads, nThreads,
150
(new
ThreadPoolExecutor
(1, 1,
171
(new
ThreadPoolExecutor
(1, 1,
189
* may be created using {@link
ThreadPoolExecutor
} constructors.
194
return new
ThreadPoolExecutor
(0, Integer.MAX_VALUE,
209
return new
ThreadPoolExecutor
(0, Integer.MAX_VALUE,
ThreadPoolExecutor.java
33
* Each {@code
ThreadPoolExecutor
} also maintains some basic
53
* A {@code
ThreadPoolExecutor
} will automatically adjust the
192
* RejectedExecutionHandler#rejectedExecution(Runnable,
ThreadPoolExecutor
)}
198
* <li>In the default {@link
ThreadPoolExecutor
.AbortPolicy}, the
202
* <li>In {@link
ThreadPoolExecutor
.CallerRunsPolicy}, the thread
207
* <li>In {@link
ThreadPoolExecutor
.DiscardPolicy}, a task that
210
* <li>In {@link
ThreadPoolExecutor
.DiscardOldestPolicy}, if the
267
* class PausableThreadPoolExecutor extends
ThreadPoolExecutor
{
309
public class
ThreadPoolExecutor
extends AbstractExecutorService {
[
all
...]