pub struct ThreadTreeCtx<'a> { /* private fields */ }
Expand description
A level-specific handle to the thread tree, that can be used to inject jobs.
See ThreadTree::top()
for more information.
Implementations§
Source§impl ThreadTreeCtx<'_>
impl ThreadTreeCtx<'_>
Sourcepub fn is_parallel(&self) -> bool
pub fn is_parallel(&self) -> bool
Return true if this level will parallelize in join (or if we are at the bottom of the tree)
Sourcepub fn join<A, B, RA, RB>(&self, a: A, b: B) -> (RA, RB)where
A: FnOnce(ThreadTreeCtx<'_>) -> RA + Send,
B: FnOnce(ThreadTreeCtx<'_>) -> RB + Send,
RA: Send,
RB: Send,
pub fn join<A, B, RA, RB>(&self, a: A, b: B) -> (RA, RB)where
A: FnOnce(ThreadTreeCtx<'_>) -> RA + Send,
B: FnOnce(ThreadTreeCtx<'_>) -> RB + Send,
RA: Send,
RB: Send,
Branch out and run a and b simultaneously and return their results jointly.
Job a
runs on the current thread while b
runs on the sibling thread; each is passed
a lower level of the thread tree.
If the bottom of the tree is reached, where no sibling threads are available, both a
and
b
run on the current thread.
If either a
or b
panics, the panic is propagated here. If both jobs are executing,
the panic will not propagate until after both jobs have finished.
Warning: You must not .join() into the same tree from nested jobs. Nested jobs must be spawned using the context that each job receives as the first parameter.
Sourcepub fn join3l<A, RA>(&self, a: &A) -> ((RA, RA), RA)
pub fn join3l<A, RA>(&self, a: &A) -> ((RA, RA), RA)
Branch out twice and join, running three different jobs
Branches twice on the left side and once on the right. The closure is called with corresponding thread tree context and an index in 0..3 for the job.
Sourcepub fn join3r<A, RA>(&self, a: &A) -> (RA, (RA, RA))
pub fn join3r<A, RA>(&self, a: &A) -> (RA, (RA, RA))
Branch out twice and join, running three different jobs
Branches once on the right side and twice on the right. The closure is called with corresponding thread tree context and an index in 0..3 for the job.
Trait Implementations§
Source§impl<'a> Clone for ThreadTreeCtx<'a>
impl<'a> Clone for ThreadTreeCtx<'a>
Source§fn clone(&self) -> ThreadTreeCtx<'a>
fn clone(&self) -> ThreadTreeCtx<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more