[−][src]Struct crossbeam::thread::ScopedThreadBuilder
Configures the properties of a new thread.
The two configurable properties are:
name
: Specifies an associated name for the thread.stack_size
: Specifies the desired stack size for the thread.
The spawn
method will take ownership of the builder and return an io::Result
of the
thread handle with the given configuration.
The Scope::spawn
method uses a builder with default configuration and unwraps its return
value. You may want to use this builder when you want to recover from a failure to launch a
thread.
Examples
use crossbeam_utils::thread; thread::scope(|s| { s.builder() .spawn(|_| println!("Running a child thread")) .unwrap(); }).unwrap();
Methods
impl<'scope, 'env> ScopedThreadBuilder<'scope, 'env>
[src]
pub fn name(self, name: String) -> ScopedThreadBuilder<'scope, 'env>
[src]
Sets the name for the new thread.
The name must not contain null bytes. For more information about named threads, see here.
Examples
use crossbeam_utils::thread; use std::thread::current; thread::scope(|s| { s.builder() .name("my thread".to_string()) .spawn(|_| assert_eq!(current().name(), Some("my thread"))) .unwrap(); }).unwrap();
pub fn stack_size(self, size: usize) -> ScopedThreadBuilder<'scope, 'env>
[src]
Sets the size of the stack for the new thread.
The stack size is measured in bytes.
Examples
use crossbeam_utils::thread; thread::scope(|s| { s.builder() .stack_size(32 * 1024) .spawn(|_| println!("Running a child thread")) .unwrap(); }).unwrap();
pub fn spawn<F, T>(self, f: F) -> Result<ScopedJoinHandle<'scope, T>, Error> where
F: FnOnce(&Scope<'env>) -> T + Send + 'env,
T: Send + 'env,
[src]
F: FnOnce(&Scope<'env>) -> T + Send + 'env,
T: Send + 'env,
Spawns a scoped thread with this configuration.
The scoped thread is passed a reference to this scope as an argument, which can be used for spawning nested threads.
The returned handle can be used to manually join the thread before the scope exits.
Examples
use crossbeam_utils::thread; thread::scope(|s| { let handle = s.builder() .spawn(|_| { println!("A child thread is running"); 42 }) .unwrap(); // Join the thread and retrieve its result. let res = handle.join().unwrap(); assert_eq!(res, 42); }).unwrap();
Trait Implementations
impl<'scope, 'env> Debug for ScopedThreadBuilder<'scope, 'env> where
'env: 'scope,
[src]
'env: 'scope,
Auto Trait Implementations
impl<'scope, 'env> Send for ScopedThreadBuilder<'scope, 'env>
impl<'scope, 'env> Unpin for ScopedThreadBuilder<'scope, 'env> where
'env: 'scope,
'env: 'scope,
impl<'scope, 'env> Sync for ScopedThreadBuilder<'scope, 'env>
impl<'scope, 'env> !UnwindSafe for ScopedThreadBuilder<'scope, 'env>
impl<'scope, 'env> !RefUnwindSafe for ScopedThreadBuilder<'scope, 'env>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Wfn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,