com.aliyun.tair.taircpc.params.CpcArrayData Maven / Gradle / Ivy
package com.aliyun.tair.taircpc.params;
import com.aliyun.tair.taircpc.CommonResult;
public class CpcArrayData {
private String key;
private long timestamp;
private String item;
private String expStr;
private long exp;
private boolean hasSetExp;
private String sizeStr;
private long size;
private String winSizeStr;
private long winSize;
private static final String PX = "px";
private static final String EX = "ex";
private static final String EXAT = "exat";
private static final String PXAT = "pxat";
public CpcArrayData(String key, long timestamp, String item) {
this.key = key;
this.timestamp = timestamp;
this.item = item;
this.expStr = EX;
this.exp = 0;
this.hasSetExp = false;
this.sizeStr = "size";
this.size = 10;
this.winSizeStr = "win";
this.winSize = 1*60*1000;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public String getItem() {
return item;
}
public void setItem(String item) {
this.item = item;
}
public long getSize() {
return size;
}
public void setSize(long size) {
this.size = size;
}
public long getWinSize() {
return winSize;
}
public void setWinSize(long winSize) {
this.winSize = winSize;
}
public String getExpStr() {
return expStr;
}
public long getExp() {
return exp;
}
public String getSizeStr() {
return sizeStr;
}
private void setSizeStr(String sizeStr) {
this.sizeStr = sizeStr;
}
public String getWinSizeStr() {
return winSizeStr;
}
private void setWinSizeStr(String winSizeStr) {
this.winSizeStr = winSizeStr;
}
/**
* Set the specified expire time, in seconds.
*
* @param secondsToExpire
* @return SetParams
*/
public CpcArrayData ex(long secondsToExpire) {
if (hasSetExp)
throw new IllegalArgumentException(CommonResult.ExpIsSet);
this.hasSetExp = true;
this.expStr = EX;
this.exp = secondsToExpire;
return this;
}
public CpcArrayData px(long millisecondsToExpire) {
if (hasSetExp)
throw new IllegalArgumentException(CommonResult.ExpIsSet);
this.hasSetExp = true;
this.expStr = PX;
this.exp = millisecondsToExpire;
return this;
}
public CpcArrayData exat(long secondsToExpire) {
if (hasSetExp)
throw new IllegalArgumentException(CommonResult.ExpIsSet);
this.hasSetExp = true;
this.expStr = EXAT;
this.exp = secondsToExpire;
return this;
}
public CpcArrayData pxat(long millisecondsToExpire) {
if (hasSetExp)
throw new IllegalArgumentException(CommonResult.ExpIsSet);
this.hasSetExp = true;
this.expStr = PXAT;
this.exp = millisecondsToExpire;
return this;
}
public CpcArrayData size(long size) {
this.size = size;
return this;
}
public CpcArrayData win(long winSize) {
this.winSize = winSize;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy