Package redis.clients.jedis.resps
Class StreamPendingSummary
- java.lang.Object
-
- redis.clients.jedis.resps.StreamPendingSummary
-
public class StreamPendingSummary extends java.lang.ObjectStream pending summary compatibility class for Valkey GLIDE. Based on original Jedis StreamPendingSummary.
-
-
Constructor Summary
Constructors Constructor Description StreamPendingSummary(long total, StreamEntryID minId, StreamEntryID maxId, java.util.Map<java.lang.String,java.lang.Long> consumerMessageCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Long>getConsumerMessageCount()StreamEntryIDgetMaxId()StreamEntryIDgetMinId()longgetTotal()
-
-
-
Constructor Detail
-
StreamPendingSummary
public StreamPendingSummary(long total, StreamEntryID minId, StreamEntryID maxId, java.util.Map<java.lang.String,java.lang.Long> consumerMessageCount)
-
-
Method Detail
-
getTotal
public long getTotal()
-
getMinId
public StreamEntryID getMinId()
-
getMaxId
public StreamEntryID getMaxId()
-
getConsumerMessageCount
public java.util.Map<java.lang.String,java.lang.Long> getConsumerMessageCount()
-
-