Callbacks
The Callbacks module provides a standalone, framework-agnostic system for registering and triggering callbacks between the client and server.
Accessing the Module
Server
register_callback(name, cb)
Registers a server-side callback that clients can trigger.
Parameters
Name
Type
Description
name
string
The unique identifier for the callback event.
cb
function
The function to execute when the callback is triggered.
Example
Client
trigger_callback(name, data, cb)
Triggers a server-side callback and handles the result asynchronously.
Parameters
Name
Type
Description
name
string
The event name to trigger.
data
table
Optional data to send to the server.
cb
function
Callback function to handle the response. Signature: function(response)
Example
Last updated