mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-16 22:46:03 +01:00
chore(callbacks): update annotations
This commit is contained in:
@@ -12,9 +12,9 @@ end
|
||||
|
||||
local ServerCallback = table.create(0, 2)
|
||||
|
||||
--- Sends an event to the server and halts the current thread until a response is returned.
|
||||
---@param event string
|
||||
---@param delay number
|
||||
--- Sends an event to the server and halts the current thread until a response is returned.
|
||||
ServerCallback.Await = function(resource, event, delay, ...)
|
||||
CallbackTimer(event, delay)
|
||||
event = ('__cb_%s:%s'):format(resource, event)
|
||||
@@ -27,9 +27,9 @@ ServerCallback.Await = function(resource, event, delay, ...)
|
||||
return table.unpack(Citizen.Await(promise))
|
||||
end
|
||||
|
||||
--- Sends an event to the server and triggers a callback function once the response is returned.
|
||||
---@param event string
|
||||
---@param delay number
|
||||
--- Sends an event to the server and triggers a callback function once the response is returned.
|
||||
ServerCallback.Async = function(resource, event, delay, cb, ...)
|
||||
CallbackTimer(event, delay)
|
||||
event = ('__cb_%s:%s'):format(resource, event)
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
local ServerCallback = {
|
||||
Register = function(name, callback)
|
||||
local ServerCallback = {}
|
||||
|
||||
---@param name string
|
||||
---@param callback function
|
||||
--- Registers an event handler and callback function to respond to client requests.
|
||||
ServerCallback.Register = function(name, callback)
|
||||
name = ('__cb_%s:%s'):format(GetCurrentResourceName(), name)
|
||||
|
||||
RegisterServerEvent(name, function(...)
|
||||
|
||||
4
init.lua
4
init.lua
@@ -6,7 +6,7 @@ local LIBRARY = 'pe-lualib'
|
||||
local SERVICE = IsDuplicityVersion() and 'server' or 'client'
|
||||
local IMPORTS = {}
|
||||
|
||||
local function loadFile(file)
|
||||
local function LoadFile(file)
|
||||
local dir = ('imports/%s'):format(file)
|
||||
local chunk = LoadResourceFile(LIBRARY, ('%s/%s.lua'):format(dir, SERVICE))
|
||||
local shared = LoadResourceFile(LIBRARY, ('%s/shared.lua'):format(dir))
|
||||
@@ -29,7 +29,7 @@ end
|
||||
---@param file string
|
||||
---@return table
|
||||
function import(file)
|
||||
if not IMPORTS[file] then loadFile(file) end
|
||||
if not IMPORTS[file] then LoadFile(file) end
|
||||
return IMPORTS[file]
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user