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

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java89 * than the keepAliveTime (see {@link #getKeepAliveTime}). This
478 private volatile long keepAliveTime; field in class:ThreadPoolExecutor
1002 workQueue.poll(keepAliveTime, TimeUnit.NANOSECONDS) :
1102 * @param keepAliveTime when the number of threads is greater than
1105 * @param unit the time unit for the {@code keepAliveTime} argument
1111 * {@code keepAliveTime < 0}<br>
1118 long keepAliveTime,
1121 this(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
1133 * @param keepAliveTime when the number of threads is greater than
1136 * @param unit the time unit for the {@code keepAliveTime} argumen
1116 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
1150 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
1185 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
1222 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
[all...]

Completed in 111 milliseconds