本文整理汇总了C#中IRegion.getStartAddress方法的典型用法代码示例。如果您正苦于以下问题:C# IRegion.getStartAddress方法的具体用法?C# IRegion.getStartAddress怎么用?C# IRegion.getStartAddress使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IRegion
的用法示例。
在下文中一共展示了IRegion.getStartAddress方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: mapSegment
public void mapSegment(LayerWriteGroup tx, int use_gen,
RecordKey start_key, RecordKey end_key, IRegion reader)
{
if (! (tx.type == LayerWriteGroup.WriteGroupType.DISK_ATOMIC_NOFLUSH ||
tx.type == LayerWriteGroup.WriteGroupType.DISK_ATOMIC_FLUSH)) {
throw new Exception("NewUnusedSegment.mapSegment() must be provided an ATOMIC write group");
}
// remove the pending entry
RecordKey key = new RecordKey().appendParsedKey(".ROOT/FREELIST/PENDING");
key.appendKeyPart(new RecordKeyType_Long(reader.getStartAddress()));
tx.setValue(key, RecordUpdate.DeletionTombstone());
// add the new map
tx.mylayer.rangemapmgr.mapGenerationToRegion(tx, use_gen, start_key, end_key, reader);
}