本文整理了Java中org.apache.zookeeper.data.Stat.setCzxid()
方法的一些代码示例,展示了Stat.setCzxid()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Stat.setCzxid()
方法的具体详情如下:
包路径:org.apache.zookeeper.data.Stat
类名称:Stat
方法名:setCzxid
暂无
代码示例来源:origin: apache/zookeeper
synchronized public void copyStat(Stat to) {
to.setAversion(stat.getAversion());
to.setCtime(stat.getCtime());
to.setCzxid(stat.getCzxid());
to.setMtime(stat.getMtime());
to.setMzxid(stat.getMzxid());
to.setPzxid(stat.getPzxid());
to.setVersion(stat.getVersion());
to.setEphemeralOwner(getClientEphemeralOwner(stat));
to.setDataLength(data == null ? 0 : data.length);
int numChildren = 0;
if (this.children != null) {
numChildren = children.size();
}
// when we do the Cversion we need to translate from the count of the creates
// to the count of the changes (v3 semantics)
// for every create there is a delete except for the children still present
to.setCversion(stat.getCversion()*2 - numChildren);
to.setNumChildren(numChildren);
}
代码示例来源:origin: org.apache.zookeeper/zookeeper
public void copyStat(Stat to) {
to.setAversion(stat.getAversion());
to.setCtime(stat.getCtime());
to.setCversion(stat.getCversion());
to.setCzxid(stat.getCzxid());
to.setMtime(stat.getMtime());
to.setMzxid(stat.getMzxid());
to.setVersion(stat.getVersion());
to.setEphemeralOwner(stat.getEphemeralOwner());
to.setDataLength(data.length);
to.setNumChildren(children.size());
}
代码示例来源:origin: apache/zookeeper
/**
* Create a new Stat, fill in dummy values trying to catch Assert.failure
* to copy in client or server code.
*
* @return a new stat with dummy values
*/
private Stat newStat() {
Stat stat = new Stat();
stat.setAversion(100);
stat.setCtime(100);
stat.setCversion(100);
stat.setCzxid(100);
stat.setDataLength(100);
stat.setEphemeralOwner(100);
stat.setMtime(100);
stat.setMzxid(100);
stat.setNumChildren(100);
stat.setPzxid(100);
stat.setVersion(100);
return stat;
}
代码示例来源:origin: apache/zookeeper
public void testRoundTrip() throws IOException {
MultiResponse response = new MultiResponse();
response.add(new OpResult.CheckResult());
response.add(new OpResult.CreateResult("foo-bar"));
response.add(new OpResult.DeleteResult());
Stat s = new Stat();
s.setCzxid(546);
response.add(new OpResult.SetDataResult(s));
MultiResponse decodedResponse = codeDecode(response);
Assert.assertEquals(response, decodedResponse);
Assert.assertEquals(response.hashCode(), decodedResponse.hashCode());
}
代码示例来源:origin: apache/zookeeper
static public void copyStat(Stat from, Stat to) {
to.setAversion(from.getAversion());
to.setCtime(from.getCtime());
to.setCversion(from.getCversion());
to.setCzxid(from.getCzxid());
to.setMtime(from.getMtime());
to.setMzxid(from.getMzxid());
to.setPzxid(from.getPzxid());
to.setVersion(from.getVersion());
to.setEphemeralOwner(from.getEphemeralOwner());
to.setDataLength(from.getDataLength());
to.setNumChildren(from.getNumChildren());
}
代码示例来源:origin: org.apache.zookeeper/zookeeper
synchronized public void copyStat(Stat to) {
to.setAversion(stat.getAversion());
to.setCtime(stat.getCtime());
to.setCzxid(stat.getCzxid());
to.setMtime(stat.getMtime());
to.setMzxid(stat.getMzxid());
to.setPzxid(stat.getPzxid());
to.setVersion(stat.getVersion());
to.setEphemeralOwner(stat.getEphemeralOwner());
to.setDataLength(data == null ? 0 : data.length);
int numChildren = 0;
if (this.children != null) {
numChildren = children.size();
}
// when we do the Cversion we need to translate from the count of the creates
// to the count of the changes (v3 semantics)
// for every create there is a delete except for the children still present
to.setCversion(stat.getCversion()*2 - numChildren);
to.setNumChildren(numChildren);
}
代码示例来源:origin: org.apache.zookeeper/zookeeper
static public void copyStat(Stat from, Stat to) {
to.setAversion(from.getAversion());
to.setCtime(from.getCtime());
to.setCversion(from.getCversion());
to.setCzxid(from.getCzxid());
to.setMtime(from.getMtime());
to.setMzxid(from.getMzxid());
to.setVersion(from.getVersion());
to.setEphemeralOwner(from.getEphemeralOwner());
to.setDataLength(from.getDataLength());
to.setNumChildren(from.getNumChildren());
}
代码示例来源:origin: org.apache.zookeeper/zookeeper
static public void copyStat(Stat from, Stat to) {
to.setAversion(from.getAversion());
to.setCtime(from.getCtime());
to.setCversion(from.getCversion());
to.setCzxid(from.getCzxid());
to.setMtime(from.getMtime());
to.setMzxid(from.getMzxid());
to.setPzxid(from.getPzxid());
to.setVersion(from.getVersion());
to.setEphemeralOwner(from.getEphemeralOwner());
to.setDataLength(from.getDataLength());
to.setNumChildren(from.getNumChildren());
}
代码示例来源:origin: org.apache.hadoop/zookeeper
public void copyStat(Stat to) {
to.setAversion(stat.getAversion());
to.setCtime(stat.getCtime());
to.setCversion(stat.getCversion());
to.setCzxid(stat.getCzxid());
to.setMtime(stat.getMtime());
to.setMzxid(stat.getMzxid());
to.setVersion(stat.getVersion());
to.setEphemeralOwner(stat.getEphemeralOwner());
to.setDataLength(data.length);
to.setNumChildren(children.size());
}
代码示例来源:origin: org.apache.hadoop/zookeeper
synchronized public void copyStat(Stat to) {
to.setAversion(stat.getAversion());
to.setCtime(stat.getCtime());
to.setCversion(stat.getCversion());
to.setCzxid(stat.getCzxid());
to.setMtime(stat.getMtime());
to.setMzxid(stat.getMzxid());
to.setPzxid(stat.getPzxid());
to.setVersion(stat.getVersion());
to.setEphemeralOwner(stat.getEphemeralOwner());
to.setDataLength(data == null ? 0 : data.length);
if (this.children == null) {
to.setNumChildren(0);
} else {
to.setNumChildren(children.size());
}
}
代码示例来源:origin: org.apache.hadoop/zookeeper
static public void copyStat(Stat from, Stat to) {
to.setAversion(from.getAversion());
to.setCtime(from.getCtime());
to.setCversion(from.getCversion());
to.setCzxid(from.getCzxid());
to.setMtime(from.getMtime());
to.setMzxid(from.getMzxid());
to.setVersion(from.getVersion());
to.setEphemeralOwner(from.getEphemeralOwner());
to.setDataLength(from.getDataLength());
to.setNumChildren(from.getNumChildren());
}
代码示例来源:origin: org.apache.hadoop/zookeeper
static public void copyStat(Stat from, Stat to) {
to.setAversion(from.getAversion());
to.setCtime(from.getCtime());
to.setCversion(from.getCversion());
to.setCzxid(from.getCzxid());
to.setMtime(from.getMtime());
to.setMzxid(from.getMzxid());
to.setPzxid(from.getPzxid());
to.setVersion(from.getVersion());
to.setEphemeralOwner(from.getEphemeralOwner());
to.setDataLength(from.getDataLength());
to.setNumChildren(from.getNumChildren());
}
内容来源于网络,如有侵权,请联系作者删除!