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

/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java558 Runnable firstTask; field in class:ThreadPoolExecutor.Worker
564 * @param firstTask the first task (null if none)
566 Worker(Runnable firstTask) { argument
567 this.firstTask = firstTask;
835 * new worker is created and started running firstTask as its
842 * @param firstTask the task the new thread should run first (or
856 private boolean addWorker(Runnable firstTask, boolean core) { argument
865 firstTask == null &&
883 Worker w = new Worker(firstTask);
[all...]

Completed in 28 milliseconds