Separate the runtime and spawn traits since runtime should rarely be used

This commit is contained in:
Filip Tibell 2024-02-11 10:17:33 +01:00
parent ecbb9dcef8
commit 194cf40f21
No known key found for this signature in database
3 changed files with 15 additions and 4 deletions

View file

@ -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");

View file

@ -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};

View file

@ -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<Output = ()>;
}
/**
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<F, T>(&self, fut: F) -> Task<T>
where
F: Future<Output = T> + Send + 'static,