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

/libcore/ojluni/src/main/java/java/nio/channels/
H A DAsynchronousChannelGroup.java121 * <p> The {@link #shutdownNow() shutdownNow} method can be used to initiate a
123 * by an orderly shutdown, the {@code shutdownNow} method closes all open channels
322 public abstract void shutdownNow() throws IOException; method in class:AsynchronousChannelGroup
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DExecutorService.java54 * terminating, while the {@link #shutdownNow} method prevents waiting
111 * calling {@code shutdownNow}, if necessary, to cancel any lingering tasks:
119 * pool.shutdownNow(); // Cancel currently executing tasks
126 * pool.shutdownNow();
171 List<Runnable> shutdownNow(); method in interface:ExecutorService
183 * either {@code shutdown} or {@code shutdownNow} was called first.
H A DExecutors.java626 public List<Runnable> shutdownNow() { return e.shutdownNow(); } method in class:Executors.DelegatedExecutorService
H A DScheduledThreadPoolExecutor.java638 * {@code shutdownNow} will access the zero-delayed
687 * {@code shutdownNow} or after setting the policy to
704 * {@code shutdownNow} or after setting the policy to
719 * {@code shutdownNow}, or after setting the policy to
736 * {@code shutdownNow}, or after setting the policy to
819 public List<Runnable> shutdownNow() { method in class:ScheduledThreadPoolExecutor
820 return super.shutdownNow();
H A DThreadPoolExecutor.java379 * On invocation of shutdownNow()
477 * also hold mainLock on shutdown and shutdownNow, for the sake of
574 * Permission required for callers of shutdown and shutdownNow.
1157 // shutdownNow race while clearing interrupt
1437 public List<Runnable> shutdownNow() { method in class:ThreadPoolExecutor
1459 * after {@link #shutdown} or {@link #shutdownNow} but has not
H A DForkJoinPool.java487 * Shutdown and Termination. A call to shutdownNow invokes
2709 * #shutdown} or {@link #shutdownNow}. However this pool and any
3184 public List<Runnable> shutdownNow() { method in class:ForkJoinPool
/libcore/jsr166-tests/src/test/java/jsr166/
H A DAbstractExecutorServiceTest.java52 public List<Runnable> shutdownNow() { method in class:AbstractExecutorServiceTest.DirectExecutorService
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DAsynchronousChannelGroupImpl.java270 // threads invoking shutdownNow will block).
281 public final void shutdownNow() throws IOException { method in class:AsynchronousChannelGroupImpl

Completed in 176 milliseconds