mlua-luau-scheduler/examples/basic_sleep.rs
Filip Tibell 053b85e0c1
YARR (Yet Another Runtime Refactor)
* Minimize dependencies, no longer depending on smol directly, only async-excecutor and its utility crates
* Error callback is no longer thread safe, but faster
* Improved documentation and panic messages for internal workings of runtime
* Depend on mlua exact version needed and serialize feature
* Change crate name
2024-01-27 15:17:09 +01:00

36 lines
859 B
Rust

use std::time::{Duration, Instant};
use async_io::{block_on, Timer};
use mlua::prelude::*;
use mlua_luau_runtime::*;
const MAIN_SCRIPT: &str = include_str!("./lua/basic_sleep.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment
let lua = Lua::new();
lua.globals().set(
"sleep",
lua.create_async_function(|_, duration: f64| async move {
let before = Instant::now();
let after = Timer::after(Duration::from_secs_f64(duration)).await;
Ok((after - before).as_secs_f64())
})?,
)?;
// Load the main script into a runtime
let rt = Runtime::new(&lua)?;
let main = lua.load(MAIN_SCRIPT);
rt.spawn_thread(main, ())?;
// Run until completion
block_on(rt.run());
Ok(())
}
#[test]
fn test_basic_sleep() -> LuaResult<()> {
main()
}