本文整理汇总了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);
}
示例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());
}
示例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());
}