diff --git a/examples/basic_spawn.rs b/examples/basic_spawn.rs index 385f585..5a32c56 100644 --- a/examples/basic_spawn.rs +++ b/examples/basic_spawn.rs @@ -6,7 +6,7 @@ use async_fs::read_to_string; use async_io::block_on; use mlua::prelude::*; -use mlua_luau_runtime::{LuaRuntimeExt, Runtime}; +use mlua_luau_runtime::{LuaSpawnExt, Runtime}; const MAIN_SCRIPT: &str = include_str!("./lua/basic_spawn.luau"); diff --git a/lib/lib.rs b/lib/lib.rs index 9ac9c55..15f8940 100644 --- a/lib/lib.rs +++ b/lib/lib.rs @@ -13,4 +13,4 @@ pub use functions::Functions; pub use runtime::Runtime; pub use status::Status; pub use thread_id::ThreadId; -pub use traits::{IntoLuaThread, LuaRuntimeExt}; +pub use traits::{IntoLuaThread, LuaRuntimeExt, LuaSpawnExt}; diff --git a/lib/traits.rs b/lib/traits.rs index 02c6105..8b8bc75 100644 --- a/lib/traits.rs +++ b/lib/traits.rs @@ -71,8 +71,6 @@ where - Setting the exit code and forcibly stopping the runtime - Pushing (spawning) and deferring (pushing to the back) lua threads - Tracking and getting the result of lua threads - - Spawning thread-local (`!Send`) futures on the current executor - - Spawning background (`Send`) futures on the current executor */ pub trait LuaRuntimeExt<'lua> { /** @@ -144,7 +142,18 @@ pub trait LuaRuntimeExt<'lua> { Panics if called outside of a running [`Runtime`]. */ fn wait_for_thread(&'lua self, id: ThreadId) -> impl Future; +} +/** + Trait for interacting with the [`Executor`] for the current [`Runtime`]. + + Provides extra methods on the [`Lua`] struct for: + + - Spawning thread-local (`!Send`) futures on the current executor + - Spawning background (`Send`) futures on the current executor + - Spawning blocking tasks on a separate thread pool +*/ +pub trait LuaSpawnExt<'lua> { /** Spawns the given future on the current executor and returns its [`Task`]. @@ -325,7 +334,9 @@ impl<'lua> LuaRuntimeExt<'lua> for Lua { .expect("lua threads results can only be retrieved within a runtime"); async move { map.listen(id).await } } +} +impl<'lua> LuaSpawnExt<'lua> for Lua { fn spawn(&self, fut: F) -> Task where F: Future + Send + 'static,