Scheduler
Description
Manages the callback system for the ArmaDragonflyClient extension. This function receives task IDs from the extension's asynchronous callbacks, parses them, and registers them in a hashmap for later processing. It acts as the bridge between the extension's asynchronous operations and the game's execution environment.
Syntax
[_taskID] call dragonfly_db_fnc_scheduler
Parameters
Parameter | Type | Description | Default |
---|---|---|---|
_taskID | String | Task identifier returned from extension callback | "" |
Return Value
None. The function registers the task ID in a hashmap for later processing.
Examples
Process a callback from the extension:
["1689524160123_get"] call dragonfly_db_fnc_scheduler;
Forward a callback to the server:
["1689524160123_hgetall"] remoteExecCall ["dragonfly_db_fnc_scheduler", 2, false];
Notes
- Parses the task ID to extract the timestamp and operation type
- Registers the task in a type-specific hashmap using the mission namespace
- Each operation type (get, hgetall, etc.) has its own hashmap for tracking
- The format of task IDs is typically:
[timestamp]_[operation]
- This function is automatically called by the extension callback mechanism
- Creates hashmaps on demand if they don't already exist
- Critical for handling asynchronous database operations
Links
Add Task | Handler | Init | Process Queue | Scheduler | Setup