Home | History | Annotate | Download | only in channels

Lines Matching defs:shutdown

51  * shutdown of the associated thread pool.
106 * <a name="shutdown"></a><h2>Shutdown and Termination</h2>
108 * <p> The {@link #shutdown() shutdown} method is used to initiate an <em>orderly
109 * shutdown</em> of a group. An orderly shutdown marks the group as shutdown;
111 * {@link ShutdownChannelGroupException}. Whether or not a group is shutdown can
112 * be tested using the {@link #isShutdown() isShutdown} method. Once shutdown,
122 * <em>forceful shutdown</em> of the group. In addition to the actions performed
123 * by an orderly shutdown, the {@code shutdownNow} method closes all open channels
206 * orderly {@link ExecutorService#shutdown shutdown} of the executor
251 * orderly {@link ExecutorService#shutdown shutdown} of the executor
277 * Tells whether or not this asynchronous channel group is shutdown.
279 * @return {@code true} if this asynchronous channel group is shutdown or
280 * has been marked for shutdown.
295 * Initiates an orderly shutdown of the group.
297 * <p> This method marks the group as shutdown. Further attempts to construct
302 * group is already shutdown.
304 public abstract void shutdown();
309 * <p> In addition to the actions performed by the {@link #shutdown() shutdown}