pub struct JoinHandle<T>(_);
An owned permission to join on a thread (block on its termination).
A JoinHandle
detaches the associated thread when it is dropped, which means that there is no longer any handle to thread and no way to join
on it.
Due to platform restrictions, it is not possible to Clone
this handle: the ability to join a thread is a uniquely-owned permission.
This struct
is created by the thread::spawn
function and the thread::Builder::spawn
method.
Creation from thread::spawn
:
use std::thread; let join_handle: thread::JoinHandle<_> = thread::spawn(|| { // some work here });
Creation from thread::Builder::spawn
:
use std::thread; let builder = thread::Builder::new(); let join_handle: thread::JoinHandle<_> = builder.spawn(|| { // some work here }).unwrap();
Child being detached and outliving its parent:
use std::thread; use std::time::Duration; let original_thread = thread::spawn(|| { let _detached_thread = thread::spawn(|| { // Here we sleep to make sure that the first thread returns before. thread::sleep(Duration::from_millis(10)); // This will be called, even though the JoinHandle is dropped. println!("♫ Still alive ♫"); }); }); original_thread.join().expect("The thread being joined has panicked"); println!("Original thread is joined."); // We make sure that the new thread has time to run, before the main // thread returns. thread::sleep(Duration::from_millis(1000));
impl<T> JoinHandle<T>
[src]
pub fn thread(&self) -> &Thread
[src]
Extracts a handle to the underlying thread.
use std::thread; let builder = thread::Builder::new(); let join_handle: thread::JoinHandle<_> = builder.spawn(|| { // some work here }).unwrap(); let thread = join_handle.thread(); println!("thread id: {:?}", thread.id());
pub fn join(self) -> Result<T>
[src]
Waits for the associated thread to finish.
In terms of atomic memory orderings, the completion of the associated thread synchronizes with this function returning. In other words, all operations performed by that thread are ordered before all operations that happen after join
returns.
If the child thread panics, Err
is returned with the parameter given to panic!
.
This function may panic on some platforms if a thread attempts to join itself or otherwise may create a deadlock with joining threads.
use std::thread; let builder = thread::Builder::new(); let join_handle: thread::JoinHandle<_> = builder.spawn(|| { // some work here }).unwrap(); join_handle.join().expect("Couldn't join on the associated thread");
impl<T> AsRawHandle for JoinHandle<T>
[src]1.9.0
fn as_raw_handle(&self) -> RawHandle
[src]
impl<T> Debug for JoinHandle<T>
[src]1.16.0
impl<T> IntoRawHandle for JoinHandle<T>
[src]1.9.0
fn into_raw_handle(self) -> RawHandle
[src]
impl<T> JoinHandleExt for JoinHandle<T>
[src]1.9.0
fn as_pthread_t(&self) -> RawPthread
[src]
fn into_pthread_t(self) -> RawPthread
[src]
impl<T> Send for JoinHandle<T>
[src]1.29.0
impl<T> Sync for JoinHandle<T>
[src]1.29.0
impl<T> !RefUnwindSafe for JoinHandle<T>
impl<T> Unpin for JoinHandle<T>
impl<T> !UnwindSafe for JoinHandle<T>
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
fn borrow(&self) -> &TⓘNotable traits for &'_ mut F
impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized,
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized,
type Item = <I as Iterator>::Item;
impl<R: Read + ?Sized, '_> Read for &'_ mut R
impl<W: Write + ?Sized, '_> Write for &'_ mut W
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut F
impl<'_, F> Future for &'_ mut F where
F: Unpin + Future + ?Sized,
type Output = <F as Future>::Output;
impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized,
type Item = <I as Iterator>::Item;
impl<R: Read + ?Sized, '_> Read for &'_ mut R
impl<W: Write + ?Sized, '_> Write for &'_ mut W
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
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]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/thread/struct.JoinHandle.html