mlua-luau-scheduler/examples/lua/scheduler_ordering.luau
Filip Tibell 588fc46807
Refactor runtime and callbacks
* 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
2024-01-24 19:50:25 +01:00

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)