Package org.redisson.api
Class StreamConsumer
- java.lang.Object
-
- org.redisson.api.StreamConsumer
-
public class StreamConsumer extends Object
Object containing details about Stream Consumer- Author:
- Nikita Koksharov
-
-
Constructor Summary
Constructors Constructor Description StreamConsumer(String name, int pending, long idleTime)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getIdleTime()
Returns idle time in milliseconds since which this consumer hasn't consumed messagesString
getName()
Returns name of this consumerint
getPending()
Returns amount of pending messages for this consumer
-
-
-
Constructor Detail
-
StreamConsumer
public StreamConsumer(String name, int pending, long idleTime)
-
-
Method Detail
-
getPending
public int getPending()
Returns amount of pending messages for this consumer- Returns:
- amount of pending messages
-
getName
public String getName()
Returns name of this consumer- Returns:
- name of consumer
-
getIdleTime
public long getIdleTime()
Returns idle time in milliseconds since which this consumer hasn't consumed messages- Returns:
- idle time in milliseconds
-
-