You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { RedisArgument, BlobStringReply, NullReply, ArrayReply, TuplesReply, NumberReply, UnwrapReply, Command } from '../RESP/types';
|
|
|
|
type XPendingRawReply = TuplesReply<[
|
|
pending: NumberReply,
|
|
firstId: BlobStringReply | NullReply,
|
|
lastId: BlobStringReply | NullReply,
|
|
consumers: ArrayReply<TuplesReply<[
|
|
name: BlobStringReply,
|
|
deliveriesCounter: BlobStringReply
|
|
]>> | NullReply
|
|
]>;
|
|
|
|
export default {
|
|
FIRST_KEY_INDEX: 1,
|
|
IS_READ_ONLY: true,
|
|
transformArguments(key: RedisArgument, group: RedisArgument) {
|
|
return ['XPENDING', key, group];
|
|
},
|
|
transformReply(reply: UnwrapReply<XPendingRawReply>) {
|
|
const consumers = reply[3] as unknown as UnwrapReply<typeof reply[3]>;
|
|
return {
|
|
pending: reply[0],
|
|
firstId: reply[1],
|
|
lastId: reply[2],
|
|
consumers: consumers === null ? null : consumers.map(consumer => {
|
|
const [name, deliveriesCounter] = consumer as unknown as UnwrapReply<typeof consumer>;
|
|
return {
|
|
name,
|
|
deliveriesCounter: Number(deliveriesCounter)
|
|
};
|
|
})
|
|
}
|
|
}
|
|
} as const satisfies Command;
|