
All checks were successful
Build / Build (push) Successful in 1m21s
This commit introduces functionality to delete hash values from the Dragonfly database. It includes two new functions: `hashDelete` for deleting a hash value by key, and `hashDeleteId` for deleting a hash value by both key and ID. Key changes: * **`fnc_processQueue.sqf`:** Added cases for "hdel" and "hdelid" task types to process hash deletion requests, calling the corresponding `FUNC(hashDelete)` and `FUNC(hashDeleteId)` functions. * **`XEH_PREP.hpp`:** Added `PREP` definitions for `hashDelete` and `hashDeleteId` to enable event handlers for these functions.
31 lines
497 B
C++
31 lines
497 B
C++
PREP(addTask);
|
|
PREP(delete);
|
|
PREP(fetch);
|
|
PREP(get);
|
|
PREP(handler);
|
|
PREP(hashDelete);
|
|
PREP(hashDeleteId);
|
|
PREP(hashGet);
|
|
PREP(hashGetAll);
|
|
PREP(hashGetAllId);
|
|
PREP(hashGetId);
|
|
PREP(hashSet);
|
|
PREP(hashSetBulk);
|
|
PREP(hashSetId);
|
|
PREP(hashSetIdBulk);
|
|
PREP(init);
|
|
PREP(listAdd);
|
|
PREP(listGet);
|
|
PREP(listLoad);
|
|
PREP(listRemove);
|
|
PREP(listSet);
|
|
PREP(pubSubFetch);
|
|
PREP(pubSubHandler);
|
|
PREP(processQueue);
|
|
PREP(publish);
|
|
PREP(saveDB);
|
|
PREP(scheduler);
|
|
PREP(set);
|
|
PREP(setup);
|
|
PREP(subscribe);
|
|
PREP(test); |