ramdb/docs/core/README.md
Jacob Schmidt 801bc91ffb fix: Update documentation links to README.md
This commit updates internal links in the documentation to point to the correct `README.md` files within each category. This ensures that the links function as intended and improves navigation within the documentation.
2025-03-22 20:10:02 -05:00

29 lines
877 B
Markdown

# Core Functions
This section contains documentation for the core functions of ArmaRAMDb that handle initialization, process management, and scheduling.
## Available Functions
- [addTask](addTask.md) - Add a task to the scheduler
- [handler](handler.md) - Handle callbacks from the extension
- [init](init.md) - Initialize the database system
- [printAddonName](printAddonName.md) - Print the addon name
- [processQueue](processQueue.md) - Process queued database operations
- [scheduler](scheduler.md) - Schedule database operations
- [test](test.md) - Test the database connection
## Example Usage
```sqf
// Initialize the database
[] call ramdb_db_fnc_init;
// Test the database connection
[] call ramdb_db_fnc_test;
```
## Related Categories
- [Basic Data Operations](../basic/README.md)
- [Hash Operations](../hash/README.md)
- [List Operations](../list/README.md)