-first commit
This commit is contained in:
40
node_modules/@redis/client/dist/lib/commands/XINFO_CONSUMERS.js
generated
vendored
Normal file
40
node_modules/@redis/client/dist/lib/commands/XINFO_CONSUMERS.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
IS_READ_ONLY: true,
|
||||
/**
|
||||
* Constructs the XINFO CONSUMERS command to list the consumers in a consumer group
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param key - The stream key
|
||||
* @param group - Name of the consumer group
|
||||
* @returns Array of consumer information objects
|
||||
* @see https://redis.io/commands/xinfo-consumers/
|
||||
*/
|
||||
parseCommand(parser, key, group) {
|
||||
parser.push('XINFO', 'CONSUMERS');
|
||||
parser.pushKey(key);
|
||||
parser.push(group);
|
||||
},
|
||||
transformReply: {
|
||||
/**
|
||||
* Transforms RESP2 reply into a structured consumer information array
|
||||
*
|
||||
* @param reply - Raw RESP2 reply from Redis
|
||||
* @returns Array of consumer information objects
|
||||
*/
|
||||
2: (reply) => {
|
||||
return reply.map(consumer => {
|
||||
const unwrapped = consumer;
|
||||
return {
|
||||
name: unwrapped[1],
|
||||
pending: unwrapped[3],
|
||||
idle: unwrapped[5],
|
||||
inactive: unwrapped[7]
|
||||
};
|
||||
});
|
||||
},
|
||||
3: undefined
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=XINFO_CONSUMERS.js.map
|
||||
Reference in New Issue
Block a user