java.lang.Object
io.lettuce.core.models.stream.PendingParser
public class PendingParser extends Object
Parser for redis XPENDING command output.
- Since:
- 5.1
- Author:
- Mark Paluch
-
Method Summary
Modifier and Type Method Description static PendingMessagesparse(List<?> xpendingOutput)Parse the output of the Redis XPENDING reporting a summary on pending messages.static List<PendingMessage>parseRange(List<?> xpendingOutput)Parse the output of the Redis XPENDING command withRange.
-
Method Details
-
parseRange
Parse the output of the Redis XPENDING command withRange.- Parameters:
xpendingOutput- output of the Redis XPENDING.- Returns:
- list of
PendingMessages.
-
parse
Parse the output of the Redis XPENDING reporting a summary on pending messages.- Parameters:
xpendingOutput- output of the Redis XPENDING.- Returns:
PendingMessages.
-