mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-04 10:30:56 +01:00
* Improved ergonomics and flexibility for crate consumers * Simplified callback mechanism for errors * Factor out runtime thread queues into proper structs * Misc performance improvements - approx 20% faster scheduler
26 lines
536 B
Lua
26 lines
536 B
Lua
--!nocheck
|
|
--!nolint UnknownGlobal
|
|
|
|
print(1)
|
|
|
|
-- Defer will run at the end of the resumption cycle, but without yielding
|
|
defer(function()
|
|
print(5)
|
|
end)
|
|
|
|
-- Spawn will instantly run up until the first yield, and must then be resumed manually ...
|
|
spawn(function()
|
|
print(2)
|
|
coroutine.yield()
|
|
print("unreachable")
|
|
end)
|
|
|
|
-- ... unless calling functions created using `lua.create_async_function(...)`,
|
|
-- which will resume their calling thread with their result automatically
|
|
spawn(function()
|
|
print(3)
|
|
sleep(1)
|
|
print(6)
|
|
end)
|
|
|
|
print(4)
|