- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.pause = void 0;
|
|
const content = `--[[
|
|
Pauses or resumes a queue globably.
|
|
Input:
|
|
KEYS[1] 'wait' or 'paused''
|
|
KEYS[2] 'paused' or 'wait'
|
|
KEYS[3] 'meta'
|
|
KEYS[4] 'prioritized'
|
|
KEYS[5] events stream key
|
|
ARGV[1] 'paused' or 'resumed'
|
|
Event:
|
|
publish paused or resumed event.
|
|
]]
|
|
local rcall = redis.call
|
|
-- Includes
|
|
--[[
|
|
Function priority marker to wait if needed
|
|
in order to wake up our workers and to respect priority
|
|
order as much as possible
|
|
]]
|
|
local function addPriorityMarkerIfNeeded(waitKey)
|
|
local waitLen = rcall("LLEN", waitKey)
|
|
if waitLen == 0 then
|
|
rcall("LPUSH", waitKey, "0:0")
|
|
end
|
|
end
|
|
if rcall("EXISTS", KEYS[1]) == 1 then
|
|
rcall("RENAME", KEYS[1], KEYS[2])
|
|
end
|
|
if ARGV[1] == "paused" then
|
|
rcall("HSET", KEYS[3], "paused", 1)
|
|
else
|
|
rcall("HDEL", KEYS[3], "paused")
|
|
local priorityCount = rcall("ZCARD", KEYS[4])
|
|
if priorityCount > 0 then
|
|
addPriorityMarkerIfNeeded(KEYS[2])
|
|
end
|
|
end
|
|
rcall("XADD", KEYS[5], "*", "event", ARGV[1]);
|
|
`;
|
|
exports.pause = {
|
|
name: 'pause',
|
|
content,
|
|
keys: 5,
|
|
};
|
|
//# sourceMappingURL=pause-5.js.map
|