当前位置: 首页>>代码示例>>Java>>正文


Java SerializeUtils.serializeSnapshot方法代码示例

本文整理汇总了Java中org.apache.zookeeper.server.util.SerializeUtils.serializeSnapshot方法的典型用法代码示例。如果您正苦于以下问题:Java SerializeUtils.serializeSnapshot方法的具体用法?Java SerializeUtils.serializeSnapshot怎么用?Java SerializeUtils.serializeSnapshot使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.zookeeper.server.util.SerializeUtils的用法示例。


在下文中一共展示了SerializeUtils.serializeSnapshot方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: serialize

import org.apache.zookeeper.server.util.SerializeUtils; //导入方法依赖的package包/类
/**
 * serialize the datatree and sessions
 * @param dt the datatree to be serialized
 * @param sessions the sessions to be serialized
 * @param oa the output archive to serialize into
 * @param header the header of this snapshot
 * @throws IOException
 */
protected void serialize(DataTree dt,Map<Long, Integer> sessions,
        OutputArchive oa, FileHeader header) throws IOException {
    // this is really a programmatic error and not something that can
    // happen at runtime
    if(header==null)
        throw new IllegalStateException(
                "Snapshot's not open for writing: uninitialized header");
    header.serialize(oa, "fileheader");
    SerializeUtils.serializeSnapshot(dt,oa,sessions);
}
 
开发者ID:maoling,项目名称:fuck_zookeeper,代码行数:19,代码来源:FileSnap.java

示例2: serializeSnapshot

import org.apache.zookeeper.server.util.SerializeUtils; //导入方法依赖的package包/类
/**
 * serialize the snapshot
 * @param oa the output archive to which the snapshot needs to be serialized
 * @throws IOException
 * @throws InterruptedException
 */
public void serializeSnapshot(OutputArchive oa) throws IOException,
InterruptedException {
    SerializeUtils.serializeSnapshot(getDataTree(), oa, getSessionWithTimeOuts());
}
 
开发者ID:maoling,项目名称:fuck_zookeeper,代码行数:11,代码来源:ZKDatabase.java

示例3: serializeSnapshot

import org.apache.zookeeper.server.util.SerializeUtils; //导入方法依赖的package包/类
/**
 * serialize the snapshot
 * 
 * @param oa
 *            the output archive to which the snapshot needs to be
 *            serialized
 * @throws IOException
 * @throws InterruptedException
 */
public void serializeSnapshot(OutputArchive oa) throws IOException,
		InterruptedException {
	SerializeUtils.serializeSnapshot(getDataTree(), oa,
			getSessionWithTimeOuts());
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:15,代码来源:ZKDatabase.java


注:本文中的org.apache.zookeeper.server.util.SerializeUtils.serializeSnapshot方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。