Page 1 of 1

Thread Procedure Call - inter-thread comm helper

Posted: Mon Dec 05, 2016 1:17 pm
by buckle2000
Not boasting, this library is far more easier to use than plain love.thread.Channel.

https://github.com/buckle2000/love2d-threadpc

Simple one-side example: setting up a callback

Code: Select all

proxy = require("threadpc")('a','b')
function proxy.callback(arg1, arg2)
	print(arg1, arg2)
end