Browse Source

feat: add "spawn" method

Jonathan Kelley 3 năm trước cách đây
mục cha
commit
bad4b773b7
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      packages/core/src/scopes.rs

+ 5 - 0
packages/core/src/scopes.rs

@@ -751,6 +751,11 @@ impl ScopeState {
         self.tasks.push_fut(fut)
     }
 
+    /// Spawns the future but does not return the TaskId
+    pub fn spawn(&self, fut: impl Future<Output = ()> + 'static) {
+        self.push_future(fut);
+    }
+
     // todo: attach some state to the future to know if we should poll it
     pub fn remove_future(&self, id: TaskId) {
         self.tasks.remove_fut(id);