This commit is contained in:
Nikolay Kim 2024-08-29 19:54:14 +05:00
parent 337c188b14
commit df2043ca3c

View file

@ -214,6 +214,16 @@ mod compio {
fut: Option<comp_io::runtime::JoinHandle<T>>,
}
impl<T> JoinHandle<T> {
pub fn is_finished(&self) -> bool {
if let Some(hnd) = &self.fut {
hnd.is_finished()
} else {
true
}
}
}
impl<T> Drop for JoinHandle<T> {
fn drop(&mut self) {
self.fut.take().unwrap().detach();
@ -512,6 +522,12 @@ mod no_rt {
t: PhantomData<T>,
}
impl<T> JoinHandle<T> {
pub fn is_finished(&self) -> bool {
true
}
}
impl<T> Future for JoinHandle<T> {
type Output = Result<T, JoinError>;