MCPcopy Index your code
hub / github.com/redis/node-redis / parseCommand

Function parseCommand

packages/client/lib/commands/BZPOPMAX.ts:7–11  ·  view source on GitHub ↗
(parser: CommandParser, keys: RedisVariadicArgument, timeout: number)

Source from the content-addressed store, hash-verified

5export default {
6 IS_READ_ONLY: false,
7 parseCommand(parser: CommandParser, keys: RedisVariadicArgument, timeout: number) {
8 parser.push('BZPOPMAX');
9 parser.pushKeys(keys);
10 parser.push(timeout.toString());
11 },
12 transformReply: {
13 2(
14 reply: UnwrapReply<NullReply | TuplesReply<[BlobStringReply, BlobStringReply, BlobStringReply]>>,

Callers

nothing calls this directly

Calls 3

pushKeysMethod · 0.80
toStringMethod · 0.65
pushMethod · 0.45

Tested by

no test coverage detected