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**
- 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.
- multi:newProccesor() Creates a process that acts like the multi namespace that can be managed independently from the mainloop.
- Connections can be added together
- All objects now use connections internally
- Updated getTasksDetails() to handle the new method of managing threads and processors
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
return c
end
function multi:newConnector()
local c = {Type = "connector"}
return c
end
local CRef = {
Fire = function() end
}
local ignoreconn = true
function multi:newConnection(protect,func,kill)
local c={}
c.callback = func