redis.clients.jedis.params.XReadParams 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.params;
import redis.clients.jedis.CommandArguments;
import redis.clients.jedis.Protocol.Keyword;
public class XReadParams implements IParams {
private Integer count = null;
private Integer block = null;
public static XReadParams xReadParams() {
return new XReadParams();
}
public XReadParams count(int count) {
this.count = count;
return this;
}
public XReadParams block(int block) {
this.block = block;
return this;
}
@Override
public void addParams(CommandArguments args) {
if (count != null) {
args.add(Keyword.COUNT).add(count);
}
if (block != null) {
args.add(Keyword.BLOCK).add(block).blocking();
}
}
}