nixos/lua-lsp/meta/3rd/Cocos4.0/library/cc/Console.lua

40 lines
1 KiB
Lua
Raw Normal View History

---@meta
---@class cc.Console :cc.Ref
local Console={ }
cc.Console=Console
---* starts listening to specified TCP port
---@param port int
---@return boolean
function Console:listenOnTCP (port) end
---* log something in the console
---@param buf char
---@return self
function Console:log (buf) end
---* delete custom command
---@param cmdName string
---@return self
function Console:delCommand (cmdName) end
---* stops the Console. 'stop' will be called at destruction time as well
---@return self
function Console:stop () end
---* starts listening to specified file descriptor
---@param fd int
---@return boolean
function Console:listenOnFileDescriptor (fd) end
---*
---@param var char
---@return self
function Console:setCommandSeparator (var) end
---* set bind address<br>
---* address : 127.0.0.1
---@param address string
---@return self
function Console:setBindAddress (address) end
---* Checks whether the server for console is bound with ipv6 address
---@return boolean
function Console:isIpv6Server () end