Struct timely::scheduling::activate::SyncActivations
source · pub struct SyncActivations { /* private fields */ }
Expand description
A thread-safe handle to an Activations
.
Implementations§
source§impl SyncActivations
impl SyncActivations
sourcepub fn activate(&self, path: Vec<usize>) -> Result<(), SyncActivationError>
pub fn activate(&self, path: Vec<usize>) -> Result<(), SyncActivationError>
Unparks the task addressed by path
and unparks the associated worker
thread.
sourcepub fn activate_batch<I>(&self, paths: I) -> Result<(), SyncActivationError>
pub fn activate_batch<I>(&self, paths: I) -> Result<(), SyncActivationError>
Unparks the tasks addressed by paths
and unparks the associated worker
thread.
This method can be more efficient than calling activate
repeatedly, as
it only unparks the worker thread after sending all of the activations.
Trait Implementations§
source§impl Clone for SyncActivations
impl Clone for SyncActivations
source§fn clone(&self) -> SyncActivations
fn clone(&self) -> SyncActivations
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SyncActivations
impl RefUnwindSafe for SyncActivations
impl Send for SyncActivations
impl Sync for SyncActivations
impl Unpin for SyncActivations
impl UnwindSafe for SyncActivations
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)