Uses of Class
redis.clients.jedis.resps.StreamPendingEntry
Packages that use StreamPendingEntry
Package
Description
This package contains the interfaces that contain methods representing Redis core commands.
-
Uses of StreamPendingEntry in redis.clients.jedis
Fields in redis.clients.jedis with type parameters of type StreamPendingEntryModifier and TypeFieldDescriptionstatic final Builder<List<StreamPendingEntry>> BuilderFactory.STREAM_PENDING_ENTRY_LISTMethods in redis.clients.jedis that return types with arguments of type StreamPendingEntryModifier and TypeMethodDescriptionfinal CommandObject<List<StreamPendingEntry>> CommandObjects.xpending(String key, String groupName, XPendingParams params) final CommandObject<List<StreamPendingEntry>> CommandObjects.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) Deprecated.Jedis.xpending(String key, String groupName, XPendingParams params) Jedis.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) MultiNodePipelineBase.xpending(String key, String groupName, XPendingParams params) MultiNodePipelineBase.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) Pipeline.xpending(String key, String groupName, XPendingParams params) Pipeline.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) TransactionBase.xpending(String key, String groupName, XPendingParams params) TransactionBase.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) UnifiedJedis.xpending(String key, String groupName, XPendingParams params) UnifiedJedis.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) -
Uses of StreamPendingEntry in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands that return types with arguments of type StreamPendingEntryModifier and TypeMethodDescriptionStreamCommands.xpending(String key, String groupName, XPendingParams params) XPENDING key group [[IDLE min-idle-time] start end count [consumer]]StreamCommands.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName) StreamPipelineCommands.xpending(String key, String groupName, XPendingParams params) XPENDING key group [[IDLE min-idle-time] start end count [consumer]]StreamPipelineCommands.xpending(String key, String groupName, StreamEntryID start, StreamEntryID end, int count, String consumerName)
CommandObjects.xpending(java.lang.String, java.lang.String, redis.clients.jedis.params.XPendingParams).