Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/CLIENT_UNPAUSE.js
2025-11-11 12:36:06 +07:00

15 lines
431 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
NOT_KEYED_COMMAND: true,
IS_READ_ONLY: true,
/**
* Resumes processing of client commands after a CLIENT PAUSE
* @param parser - The Redis command parser
*/
parseCommand(parser) {
parser.push('CLIENT', 'UNPAUSE');
},
transformReply: undefined
};
//# sourceMappingURL=CLIENT_UNPAUSE.js.map