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

/libcore/luni/src/main/java/java/util/concurrent/
H A DExecutorService.java24 * terminating, while the {@link #shutdownNow} method prevents waiting
81 * calling {@code shutdownNow}, if necessary, to cancel any lingering tasks:
89 * pool.shutdownNow(); // Cancel currently executing tasks
96 * pool.shutdownNow();
141 List<Runnable> shutdownNow(); method in interface:ExecutorService
153 * either {@code shutdown} or {@code shutdownNow} was called first.
H A DExecutors.java585 public List<Runnable> shutdownNow() { return e.shutdownNow(); } method in class:Executors.DelegatedExecutorService
H A DScheduledThreadPoolExecutor.java576 * {@code shutdownNow} will access the zero-delayed
625 * {@code shutdownNow} or after setting the policy to
642 * {@code shutdownNow} or after setting the policy to
657 * {@code shutdownNow}, or after setting the policy to
674 * {@code shutdownNow}, or after setting the policy to
752 public List<Runnable> shutdownNow() { method in class:ScheduledThreadPoolExecutor
753 return super.shutdownNow();
H A DThreadPoolExecutor.java329 * On invocation of shutdownNow()
425 * also hold mainLock on shutdown and shutdownNow, for the sake of
520 * Permission required for callers of shutdown and shutdownNow.
1102 // shutdownNow race while clearing interrupt
1380 public List<Runnable> shutdownNow() { method in class:ThreadPoolExecutor
1402 * after {@link #shutdown} or {@link #shutdownNow} but has not
H A DForkJoinPool.java349 * Shutdown and Termination. A call to shutdownNow atomically sets
2451 * #shutdown} or {@link #shutdownNow}. However this pool and any
2926 public List<Runnable> shutdownNow() { method in class:ForkJoinPool
/libcore/jsr166-tests/src/test/java/jsr166/
H A DAbstractExecutorServiceTest.java27 public List<Runnable> shutdownNow() { method in class:AbstractExecutorServiceTest.DirectExecutorService

Completed in 101 milliseconds