Struct tokio_executor::Enter [−][src]
Represents an executor context.
For more details, see enter
documentation
Methods
impl Enter
[src]
[−]
impl Enter
pub fn on_exit<F>(&mut self, f: F) where
F: FnOnce() + 'static,
[src]
[−]
pub fn on_exit<F>(&mut self, f: F) where
F: FnOnce() + 'static,
Register a callback to be invoked if and when the thread ceased to act as an executor.
pub fn make_permanent(self)
[src]
[−]
pub fn make_permanent(self)
Treat the remainder of execution on this thread as part of an executor; used mostly for thread pool worker threads.
All registered on_exit
callbacks are dropped without being
invoked.