2018-04-04 13:30:54 -07:00
|
|
|
use pool::Pool;
|
2018-03-28 01:56:21 +03:00
|
|
|
use sender::Sender;
|
|
|
|
|
|
|
|
|
|
use futures::{Future, Poll, Async};
|
|
|
|
|
|
|
|
|
|
/// Future that resolves when the thread pool is shutdown.
|
|
|
|
|
///
|
|
|
|
|
/// A `ThreadPool` is shutdown once all the worker have drained their queues and
|
|
|
|
|
/// shutdown their threads.
|
|
|
|
|
///
|
|
|
|
|
/// `Shutdown` is returned by [`shutdown`], [`shutdown_on_idle`], and
|
|
|
|
|
/// [`shutdown_now`].
|
|
|
|
|
///
|
|
|
|
|
/// [`shutdown`]: struct.ThreadPool.html#method.shutdown
|
|
|
|
|
/// [`shutdown_on_idle`]: struct.ThreadPool.html#method.shutdown_on_idle
|
|
|
|
|
/// [`shutdown_now`]: struct.ThreadPool.html#method.shutdown_now
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct Shutdown {
|
|
|
|
|
pub(crate) inner: Sender,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Shutdown {
|
2018-04-04 13:30:54 -07:00
|
|
|
fn inner(&self) -> &Pool {
|
2018-03-28 01:56:21 +03:00
|
|
|
&*self.inner.inner
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Future for Shutdown {
|
|
|
|
|
type Item = ();
|
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<(), ()> {
|
|
|
|
|
use futures::task;
|
|
|
|
|
|
2018-08-09 21:56:53 -07:00
|
|
|
self.inner().shutdown_task.task.register_task(task::current());
|
2018-03-28 01:56:21 +03:00
|
|
|
|
2018-04-15 12:29:22 -07:00
|
|
|
if !self.inner().is_shutdown() {
|
2018-03-28 01:56:21 +03:00
|
|
|
return Ok(Async::NotReady);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(().into())
|
|
|
|
|
}
|
|
|
|
|
}
|