mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-05 19:10:59 +01:00
26 lines
569 B
Lua
26 lines
569 B
Lua
--!nocheck
|
|
--!nolint UnknownGlobal
|
|
|
|
print(1)
|
|
|
|
-- Defer will run at the end of the resumption cycle, but without yielding
|
|
__runtime__defer(function()
|
|
print(5)
|
|
end)
|
|
|
|
-- Spawn will instantly run up until the first yield, and must then be resumed manually ...
|
|
__runtime__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
|
|
__runtime__spawn(function()
|
|
print(3)
|
|
sleep(1)
|
|
print(6)
|
|
end)
|
|
|
|
print(4)
|