org.apache.zookeeper.data.Stat.setCtime()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(6.2k)|赞(0)|评价(0)|浏览(76)

本文整理了Java中org.apache.zookeeper.data.Stat.setCtime()方法的一些代码示例,展示了Stat.setCtime()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Stat.setCtime()方法的具体详情如下:
包路径:org.apache.zookeeper.data.Stat
类名称:Stat
方法名:setCtime

Stat.setCtime介绍

暂无

代码示例

代码示例来源: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

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: 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

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: apache/helix

public ZNode (ZNRecord record) {
 _record = record;
 _stat = new Stat();
 _stat.setCtime(System.currentTimeMillis());
}

代码示例来源:origin: com.101tec/zkclient

@Override
public Map.Entry<List<ACL>, Stat> getAcl(String path) throws KeeperException, InterruptedException {
  if (!exists(path, false)) {
    throw new KeeperException.NoNodeException();
  }
  DataAndVersion dataAndVersion = _data.get(path);
  Stat stat = new Stat();
  stat.setVersion(dataAndVersion.getVersion());
  stat.setCtime(_creationTime.get(path));
  return new AbstractMap.SimpleEntry<>(dataAndVersion.getAcl(), stat);
}

代码示例来源: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());
}

相关文章