pub(crate) struct Handle {
pub(super) shared: Shared,
pub(crate) driver: Handle,
pub(crate) blocking_spawner: Spawner,
pub(crate) seed_generator: RngSeedGenerator,
pub(crate) task_hooks: TaskHooks,
}
Expand description
Handle to the multi thread scheduler
Fields§
Task spawner
driver: Handle
Resource driver handles
blocking_spawner: Spawner
Blocking pool spawner
seed_generator: RngSeedGenerator
Current random number generator seed
task_hooks: TaskHooks
User-supplied hooks to invoke for things
Implementations§
source§impl Handle
impl Handle
pub(crate) fn num_workers(&self) -> usize
pub(crate) fn num_alive_tasks(&self) -> usize
pub(crate) fn injection_queue_depth(&self) -> usize
source§impl Handle
impl Handle
source§impl Handle
impl Handle
pub(super) fn schedule_task(&self, task: Notified<Arc<Handle>>, is_yield: bool)
pub(super) fn schedule_option_task_without_yield( &self, task: Option<Notified<Arc<Handle>>>, )
fn schedule_local( &self, core: &mut Core, task: Notified<Arc<Handle>>, is_yield: bool, )
fn next_remote_task(&self) -> Option<Notified<Arc<Handle>>>
fn push_remote_task(&self, task: Notified<Arc<Handle>>)
pub(super) fn close(&self)
fn notify_parked_local(&self)
fn notify_parked_remote(&self)
pub(super) fn notify_all(&self)
fn notify_if_work_pending(&self)
fn transition_worker_from_searching(&self)
sourcefn shutdown_core(&self, core: Box<Core>)
fn shutdown_core(&self, core: Box<Core>)
Signals that a worker has observed the shutdown signal and has replaced its core back into its handle.
If all workers have reached this point, the final cleanup is performed.
fn ptr_eq(&self, other: &Handle) -> bool
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Handle
impl !RefUnwindSafe for Handle
impl Send for Handle
impl Sync for Handle
impl Unpin for Handle
impl !UnwindSafe for Handle
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more