Searched defs:keepAliveTime (Results 1 - 2 of 2) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
H A DThreadPoolExecutorSubclassTest.java162 long keepAliveTime,
165 super(corePoolSize, maximumPoolSize, keepAliveTime, unit,
170 long keepAliveTime,
174 super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
180 long keepAliveTime,
184 super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
189 long keepAliveTime,
194 super(corePoolSize, maximumPoolSize, keepAliveTime, unit,
836 * Constructor throws if keepAliveTime is less than zero
904 * Constructor throws if keepAliveTime i
160 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
168 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
178 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
187 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java135 * than the keepAliveTime (see {@link #getKeepAliveTime(TimeUnit)}).
146 * keepAliveTime value is non-zero. </dd>
545 private volatile long keepAliveTime; field in class:ThreadPoolExecutor
549 * If true, core threads use keepAliveTime to time out waiting
1091 workQueue.poll(keepAliveTime, TimeUnit.NANOSECONDS) :
1201 * @param keepAliveTime when the number of threads is greater than
1204 * @param unit the time unit for the {@code keepAliveTime} argument
1210 * {@code keepAliveTime < 0}<br>
1217 long keepAliveTime,
1220 this(corePoolSize, maximumPoolSize, keepAliveTime, uni
1215 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
1249 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
1284 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
1321 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
[all...]

Completed in 6638 milliseconds