redis.clients.jedis.resps.StreamPendingEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis_preview Show documentation
Show all versions of jedis_preview Show documentation
Jedis is a blazingly small and sane Redis java client.
The newest version!
package redis.clients.jedis.resps;
import java.io.IOException;
import java.io.Serializable;
import redis.clients.jedis.StreamEntryID;
public class StreamPendingEntry implements Serializable {
private static final long serialVersionUID = 1L;
private StreamEntryID id;
private String consumerName;
private long idleTime;
private long deliveredTimes;
public StreamPendingEntry(StreamEntryID id, String consumerName, long idleTime,
long deliveredTimes) {
this.id = id;
this.consumerName = consumerName;
this.idleTime = idleTime;
this.deliveredTimes = deliveredTimes;
}
public StreamEntryID getID() {
return id;
}
public long getIdleTime() {
return idleTime;
}
public long getDeliveredTimes() {
return deliveredTimes;
}
public String getConsumerName() {
return consumerName;
}
@Override
public String toString() {
return this.id + " " + this.consumerName + " idle:" + this.idleTime + " times:"
+ this.deliveredTimes;
}
private void writeObject(java.io.ObjectOutputStream out) throws IOException {
out.writeUnshared(this.id);
out.writeUTF(this.consumerName);
out.writeLong(idleTime);
out.writeLong(this.deliveredTimes);
}
private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException {
this.id = (StreamEntryID) in.readUnshared();
this.consumerName = in.readUTF();
this.idleTime = in.readLong();
this.deliveredTimes = in.readLong();
}
}