added some spaces

This commit is contained in:
Ryan Ward 2021-12-19 01:05:34 -05:00
parent 27e03a2546
commit 91d0b5f7be
2 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,7 @@
# Multi Version: 15.1.0 Hold the thread # Multi Version: 16.0.0 Upgrade Complete
**Key Changes** **Key Changes**
- thread.hold has been updated to allow all variants to work as well as some new features. Check the changelog or documentation for more info. - All objects now use connections internally
- multi:newProccesor() Creates a process that acts like the multi namespace that can be managed independently from the mainloop. - Updated getTasksDetails() to handle the new method of managing threads and processors
- Connections can be added together
Found an issue? Please [submit it](https://github.com/rayaman/multi/issues) and someone will look into it! Found an issue? Please [submit it](https://github.com/rayaman/multi/issues) and someone will look into it!

View File

@ -394,14 +394,18 @@ function multi:newBase(ins)
_tid = _tid + 1 _tid = _tid + 1
return c return c
end end
function multi:newConnector() function multi:newConnector()
local c = {Type = "connector"} local c = {Type = "connector"}
return c return c
end end
local CRef = { local CRef = {
Fire = function() end Fire = function() end
} }
local ignoreconn = true local ignoreconn = true
function multi:newConnection(protect,func,kill) function multi:newConnection(protect,func,kill)
local c={} local c={}
c.callback = func c.callback = func