本文整理汇总了Java中org.apache.hadoop.hdfs.server.protocol.ReceivedDeletedBlockInfo.getStatus方法的典型用法代码示例。如果您正苦于以下问题:Java ReceivedDeletedBlockInfo.getStatus方法的具体用法?Java ReceivedDeletedBlockInfo.getStatus怎么用?Java ReceivedDeletedBlockInfo.getStatus使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.hdfs.server.protocol.ReceivedDeletedBlockInfo
的用法示例。
在下文中一共展示了ReceivedDeletedBlockInfo.getStatus方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: convert
import org.apache.hadoop.hdfs.server.protocol.ReceivedDeletedBlockInfo; //导入方法依赖的package包/类
public static ReceivedDeletedBlockInfoProto convert(
ReceivedDeletedBlockInfo receivedDeletedBlockInfo) {
ReceivedDeletedBlockInfoProto.Builder builder =
ReceivedDeletedBlockInfoProto.newBuilder();
ReceivedDeletedBlockInfoProto.BlockStatus status;
switch (receivedDeletedBlockInfo.getStatus()) {
case RECEIVING_BLOCK:
status = ReceivedDeletedBlockInfoProto.BlockStatus.RECEIVING;
break;
case RECEIVED_BLOCK:
status = ReceivedDeletedBlockInfoProto.BlockStatus.RECEIVED;
break;
case DELETED_BLOCK:
status = ReceivedDeletedBlockInfoProto.BlockStatus.DELETED;
break;
default:
throw new IllegalArgumentException("Bad status: " +
receivedDeletedBlockInfo.getStatus());
}
builder.setStatus(status);
if (receivedDeletedBlockInfo.getDelHints() != null) {
builder.setDeleteHint(receivedDeletedBlockInfo.getDelHints());
}
return builder.setBlock(PBHelper.convert(receivedDeletedBlockInfo.getBlock()))
.build();
}
示例2: convert
import org.apache.hadoop.hdfs.server.protocol.ReceivedDeletedBlockInfo; //导入方法依赖的package包/类
public static ReceivedDeletedBlockInfoProto convert(
ReceivedDeletedBlockInfo receivedDeletedBlockInfo) {
ReceivedDeletedBlockInfoProto.Builder builder =
ReceivedDeletedBlockInfoProto.newBuilder();
ReceivedDeletedBlockInfoProto.BlockStatus status;
switch (receivedDeletedBlockInfo.getStatus()) {
case RECEIVING_BLOCK:
status = ReceivedDeletedBlockInfoProto.BlockStatus.RECEIVING;
break;
case RECEIVED_BLOCK:
status = ReceivedDeletedBlockInfoProto.BlockStatus.RECEIVED;
break;
case DELETED_BLOCK:
status = ReceivedDeletedBlockInfoProto.BlockStatus.DELETED;
break;
default:
throw new IllegalArgumentException("Bad status: " +
receivedDeletedBlockInfo.getStatus());
}
builder.setStatus(status);
if (receivedDeletedBlockInfo.getDelHints() != null) {
builder.setDeleteHint(receivedDeletedBlockInfo.getDelHints());
}
return builder.setBlock(
PBHelperClient.convert(receivedDeletedBlockInfo.getBlock())).build();
}
示例3: convert
import org.apache.hadoop.hdfs.server.protocol.ReceivedDeletedBlockInfo; //导入方法依赖的package包/类
public static ReceivedDeletedBlockInfoProto convert(
ReceivedDeletedBlockInfo receivedDeletedBlockInfo) {
ReceivedDeletedBlockInfoProto.Builder builder =
ReceivedDeletedBlockInfoProto.newBuilder();
ReceivedDeletedBlockInfoProto.BlockStatus status;
switch (receivedDeletedBlockInfo.getStatus()) {
case CREATING:
status = ReceivedDeletedBlockInfoProto.BlockStatus.CREATING;
break;
case APPENDING:
status = ReceivedDeletedBlockInfoProto.BlockStatus.APPENDING;
break;
case RECOVERING_APPEND:
status = ReceivedDeletedBlockInfoProto.BlockStatus.RECOVERING_APPEND;
break;
case RECEIVED:
status = ReceivedDeletedBlockInfoProto.BlockStatus.RECEIVED;
break;
case UPDATE_RECOVERED:
status = ReceivedDeletedBlockInfoProto.BlockStatus.UPDATE_RECOVERED;
break;
case DELETED:
status = ReceivedDeletedBlockInfoProto.BlockStatus.DELETED;
break;
default:
throw new IllegalArgumentException(
"Bad status: " + receivedDeletedBlockInfo.getStatus());
}
builder.setStatus(status);
if (receivedDeletedBlockInfo.getDelHints() != null) {
builder.setDeleteHint(receivedDeletedBlockInfo.getDelHints());
}
return builder
.setBlock(PBHelper.convert(receivedDeletedBlockInfo.getBlock()))
.build();
}