mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-10-31 15:35:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			585 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			585 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| 
 | |
| core.async_jobs = {}
 | |
| 
 | |
| function core.async_event_handler(jobid, retval)
 | |
| 	local callback = core.async_jobs[jobid]
 | |
| 	assert(type(callback) == "function")
 | |
| 	callback(unpack(retval, 1, retval.n))
 | |
| 	core.async_jobs[jobid] = nil
 | |
| end
 | |
| 
 | |
| function core.handle_async(func, callback, ...)
 | |
| 	assert(type(func) == "function" and type(callback) == "function",
 | |
| 		"Invalid core.handle_async invocation")
 | |
| 	local args = {n = select("#", ...), ...}
 | |
| 	local mod_origin = core.get_last_run_mod()
 | |
| 
 | |
| 	local jobid = core.do_async_callback(func, args, mod_origin)
 | |
| 	core.async_jobs[jobid] = callback
 | |
| 
 | |
| 	return true
 | |
| end
 | |
| 
 |