pub struct Driver<T> { /* private fields */ }
Expand description
An owned handle to a Driver instance that can be used to create initial dispatchers.
Implementations§
Source§impl<T: 'static> Driver<T>
impl<T: 'static> Driver<T>
Sourcepub fn new_dispatcher(
&self,
dispatcher: DispatcherBuilder,
) -> Result<DispatcherRef<'static>, Status>
pub fn new_dispatcher( &self, dispatcher: DispatcherBuilder, ) -> Result<DispatcherRef<'static>, Status>
Returns a builder capable of creating a new dispatcher. Note that this dispatcher cannot outlive the driver and is only capable of being stopped by shutting down the driver. It is meant to be created to serve as the initial or default dispatcher for a driver.
Sourcepub fn enter<R>(&mut self, f: impl FnOnce() -> R) -> R
pub fn enter<R>(&mut self, f: impl FnOnce() -> R) -> R
Run a closure in the context of a driver.
Sourcepub fn add_allowed_scheduler_role(&self, scheduler_role: &str)
pub fn add_allowed_scheduler_role(&self, scheduler_role: &str)
Adds an allowed scheduler role to the driver
Sourcepub fn shutdown<F: DriverShutdownObserverFn<T>>(self, f: F)
pub fn shutdown<F: DriverShutdownObserverFn<T>>(self, f: F)
Asynchronously shuts down all dispatchers owned by |driver|. |f| will be called once shutdown completes. This is guaranteed to be after all the dispatcher’s shutdown observers have been called, and will be running on the thread of the final dispatcher which has been shutdown.
Trait Implementations§
Source§impl<T> PartialEq<UnownedDriver> for Driver<T>
impl<T> PartialEq<UnownedDriver> for Driver<T>
impl<T: Send> Send for Driver<T>
SAFETY: This inner pointer is movable across threads.