mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2025-01-18 22:18:44 +01:00
10 lines
249 B
Lua
10 lines
249 B
Lua
|
core.log("info", "Initializing asynchronous environment")
|
||
|
|
||
|
function core.job_processor(func, serialized_param)
|
||
|
local param = core.deserialize(serialized_param)
|
||
|
|
||
|
local retval = core.serialize(func(param))
|
||
|
|
||
|
return retval or core.serialize(nil)
|
||
|
end
|