29 lines
957 B
JavaScript
29 lines
957 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
/**
|
|
* Deletes one or multiple entries from the stream
|
|
*/
|
|
exports.default = {
|
|
IS_READ_ONLY: false,
|
|
/**
|
|
* Constructs the XDELEX command to delete one or multiple entries from the stream
|
|
*
|
|
* @param parser - The command parser
|
|
* @param key - The stream key
|
|
* @param id - One or more message IDs to delete
|
|
* @param policy - Policy to apply when deleting entries (optional, defaults to KEEPREF)
|
|
* @returns Array of integers: -1 (not found), 1 (deleted), 2 (dangling refs)
|
|
* @see https://redis.io/commands/xdelex/
|
|
*/
|
|
parseCommand(parser, key, id, policy) {
|
|
parser.push("XDELEX");
|
|
parser.pushKey(key);
|
|
if (policy) {
|
|
parser.push(policy);
|
|
}
|
|
parser.push("IDS");
|
|
parser.pushVariadicWithLength(id);
|
|
},
|
|
transformReply: undefined,
|
|
};
|
|
//# sourceMappingURL=XDELEX.js.map
|