當前位置: 首頁>>代碼示例>>Java>>正文


Java Stat.getCversion方法代碼示例

本文整理匯總了Java中org.apache.zookeeper.data.Stat.getCversion方法的典型用法代碼示例。如果您正苦於以下問題:Java Stat.getCversion方法的具體用法?Java Stat.getCversion怎麽用?Java Stat.getCversion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.zookeeper.data.Stat的用法示例。


在下文中一共展示了Stat.getCversion方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setZNode

import org.apache.zookeeper.data.Stat; //導入方法依賴的package包/類
@PUT
@Produces( { MediaType.APPLICATION_JSON, "application/javascript",
        MediaType.APPLICATION_XML })
@Consumes(MediaType.APPLICATION_OCTET_STREAM)
public Response setZNode(
        @PathParam("path") String path,
        @QueryParam("callback") String callback,
        @DefaultValue("-1") @QueryParam("version") String versionParam,
        @DefaultValue("base64") @QueryParam("dataformat") String dataformat,
        @DefaultValue("false") @QueryParam("null") String setNull,
        @Context UriInfo ui, byte[] data) throws InterruptedException,
        KeeperException {
    ensurePathNotNull(path);

    int version;
    try {
        version = Integer.parseInt(versionParam);
    } catch (NumberFormatException e) {
        throw new WebApplicationException(Response.status(
                Response.Status.BAD_REQUEST).entity(
                new ZError(ui.getRequestUri().toString(), path
                        + " bad version " + versionParam)).build());
    }

    if (setNull.equals("true")) {
        data = null;
    }

    Stat stat = zk.setData(path, data, version);

    ZStat zstat = new ZStat(path, ui.getAbsolutePath().toString(), null,
            null, stat.getCzxid(), stat.getMzxid(), stat.getCtime(), stat
                    .getMtime(), stat.getVersion(), stat.getCversion(),
            stat.getAversion(), stat.getEphemeralOwner(), stat
                    .getDataLength(), stat.getNumChildren(), stat
                    .getPzxid());

    return Response.status(Response.Status.OK).entity(
            new JSONWithPadding(zstat, callback)).build();
}
 
開發者ID:maoling,項目名稱:fuck_zookeeper,代碼行數:41,代碼來源:ZNodeResource.java

示例2: getNextProcessId

import org.apache.zookeeper.data.Stat; //導入方法依賴的package包/類
public Long getNextProcessId(Long channelId, Long pipelineId) {
    String processRoot = ManagePathUtils.getProcessRoot(channelId, pipelineId);
    IZkConnection connection = zookeeper.getConnection();
    // zkclient會將獲取stat信息和正常的操作分開,使用原生的zk進行優化
    ZooKeeper orginZk = ((ZooKeeperx) connection).getZookeeper();

    Stat processParentStat = new Stat();
    // 獲取所有的process列表
    try {
        orginZk.getChildren(processRoot, false, processParentStat);
        return (Long) ((processParentStat.getCversion() + processParentStat.getNumChildren()) / 2L);
    } catch (Exception e) {
        return -1L;
    }
}
 
開發者ID:luoyaogui,項目名稱:otter-G,代碼行數:16,代碼來源:ArbitrateViewServiceImpl.java

示例3: getQueuesZNodeCversion

import org.apache.zookeeper.data.Stat; //導入方法依賴的package包/類
@Override public int getQueuesZNodeCversion() throws KeeperException {
  try {
    Stat stat = new Stat();
    ZKUtil.getDataNoWatch(this.zookeeper, this.queuesZNode, stat);
    return stat.getCversion();
  } catch (KeeperException e) {
    this.abortable.abort("Failed to get stat of replication rs node", e);
    throw e;
  }
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:11,代碼來源:ReplicationQueuesClientZKImpl.java

示例4: setPathVersion

import org.apache.zookeeper.data.Stat; //導入方法依賴的package包/類
private void setPathVersion(Stat stat, Long timestamp) {

        this.pathDataVersion = stat.getVersion();
        this.pathChildVersion = stat.getCversion();
        this.updateTime = timestamp;


    }
 
開發者ID:tiglabs,項目名稱:jsf-core,代碼行數:9,代碼來源:PathCache.java


注:本文中的org.apache.zookeeper.data.Stat.getCversion方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。