added some spaces
This commit is contained in:
parent
27e03a2546
commit
91d0b5f7be
@ -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!
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user