summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-12 13:02:19 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-12 13:02:19 +0200
commitc1c978972097c8c43135647fe476b08e9bd691e9 (patch)
tree87ffc62e226860e68e4b93ea0e0caafa5ef50435 /runtime
parent65ea5fac68c7f8def47696f59e1df03bd3fa84c9 (diff)
downloadiced-c1c978972097c8c43135647fe476b08e9bd691e9.tar.gz
iced-c1c978972097c8c43135647fe476b08e9bd691e9.tar.bz2
iced-c1c978972097c8c43135647fe476b08e9bd691e9.zip
Add `abort_on_drop` to `task::Handle`
You may not want to worry about aborting tasks manually.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/src/task.rs45
1 files changed, 40 insertions, 5 deletions
diff --git a/runtime/src/task.rs b/runtime/src/task.rs
index b75aca89..72f408e0 100644
--- a/runtime/src/task.rs
+++ b/runtime/src/task.rs
@@ -168,9 +168,21 @@ impl<T> Task<T> {
Some(stream) => {
let (stream, handle) = stream::abortable(stream);
- (Self(Some(boxed_stream(stream))), Handle(Some(handle)))
+ (
+ Self(Some(boxed_stream(stream))),
+ Handle {
+ raw: Some(handle),
+ abort_on_drop: false,
+ },
+ )
}
- None => (Self(None), Handle(None)),
+ None => (
+ Self(None),
+ Handle {
+ raw: None,
+ abort_on_drop: false,
+ },
+ ),
}
}
@@ -195,19 +207,34 @@ impl<T> Task<T> {
/// A handle to a [`Task`] that can be used for aborting it.
#[derive(Debug, Clone)]
-pub struct Handle(Option<stream::AbortHandle>);
+pub struct Handle {
+ raw: Option<stream::AbortHandle>,
+ abort_on_drop: bool,
+}
impl Handle {
/// Aborts the [`Task`] of this [`Handle`].
pub fn abort(&self) {
- if let Some(handle) = &self.0 {
+ if let Some(handle) = &self.raw {
handle.abort();
}
}
+ /// Returns a new [`Handle`] that will call [`Handle::abort`] whenever
+ /// it is dropped.
+ ///
+ /// This can be really useful if you do not want to worry about calling
+ /// [`Handle::abort`] yourself.
+ pub fn abort_on_drop(mut self) -> Self {
+ Self {
+ raw: self.raw.take(),
+ abort_on_drop: true,
+ }
+ }
+
/// Returns `true` if the [`Task`] of this [`Handle`] has been aborted.
pub fn is_aborted(&self) -> bool {
- if let Some(handle) = &self.0 {
+ if let Some(handle) = &self.raw {
handle.is_aborted()
} else {
true
@@ -215,6 +242,14 @@ impl Handle {
}
}
+impl Drop for Handle {
+ fn drop(&mut self) {
+ if self.abort_on_drop {
+ self.abort();
+ }
+ }
+}
+
impl<T> Task<Option<T>> {
/// Executes a new [`Task`] after this one, only when it produces `Some` value.
///