Java 类org.apache.hadoop.hdfs.protocol.proto.ClientDatanodeProtocolProtos.GetDatanodeInfoResponseProto 实例源码

项目:hadoop    文件:ClientDatanodeProtocolTranslatorPB.java   
@Override
public DatanodeLocalInfo getDatanodeInfo() throws IOException {
  GetDatanodeInfoResponseProto response;
  try {
    response = rpcProxy.getDatanodeInfo(NULL_CONTROLLER, VOID_GET_DATANODE_INFO);
    return PBHelper.convert(response.getLocalInfo());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop    文件:ClientDatanodeProtocolServerSideTranslatorPB.java   
public GetDatanodeInfoResponseProto getDatanodeInfo(RpcController unused,
    GetDatanodeInfoRequestProto request) throws ServiceException {
  GetDatanodeInfoResponseProto res;
  try {
    res = GetDatanodeInfoResponseProto.newBuilder()
        .setLocalInfo(PBHelper.convert(impl.getDatanodeInfo())).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
  return res;
}
项目:aliyun-oss-hadoop-fs    文件:ClientDatanodeProtocolTranslatorPB.java   
@Override
public DatanodeLocalInfo getDatanodeInfo() throws IOException {
  GetDatanodeInfoResponseProto response;
  try {
    response = rpcProxy.getDatanodeInfo(NULL_CONTROLLER,
        VOID_GET_DATANODE_INFO);
    return PBHelperClient.convert(response.getLocalInfo());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:aliyun-oss-hadoop-fs    文件:ClientDatanodeProtocolServerSideTranslatorPB.java   
public GetDatanodeInfoResponseProto getDatanodeInfo(RpcController unused,
    GetDatanodeInfoRequestProto request) throws ServiceException {
  GetDatanodeInfoResponseProto res;
  try {
    res = GetDatanodeInfoResponseProto.newBuilder()
        .setLocalInfo(PBHelperClient.convert(impl.getDatanodeInfo())).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
  return res;
}
项目:big-c    文件:ClientDatanodeProtocolTranslatorPB.java   
@Override
public DatanodeLocalInfo getDatanodeInfo() throws IOException {
  GetDatanodeInfoResponseProto response;
  try {
    response = rpcProxy.getDatanodeInfo(NULL_CONTROLLER, VOID_GET_DATANODE_INFO);
    return PBHelper.convert(response.getLocalInfo());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:big-c    文件:ClientDatanodeProtocolServerSideTranslatorPB.java   
public GetDatanodeInfoResponseProto getDatanodeInfo(RpcController unused,
    GetDatanodeInfoRequestProto request) throws ServiceException {
  GetDatanodeInfoResponseProto res;
  try {
    res = GetDatanodeInfoResponseProto.newBuilder()
        .setLocalInfo(PBHelper.convert(impl.getDatanodeInfo())).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
  return res;
}
项目:hadoop-2.6.0-cdh5.4.3    文件:ClientDatanodeProtocolTranslatorPB.java   
@Override
public DatanodeLocalInfo getDatanodeInfo() throws IOException {
  GetDatanodeInfoResponseProto response;
  try {
    response = rpcProxy.getDatanodeInfo(NULL_CONTROLLER, VOID_GET_DATANODE_INFO);
    return PBHelper.convert(response.getLocalInfo());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件:ClientDatanodeProtocolServerSideTranslatorPB.java   
public GetDatanodeInfoResponseProto getDatanodeInfo(RpcController unused,
    GetDatanodeInfoRequestProto request) throws ServiceException {
  GetDatanodeInfoResponseProto res;
  try {
    res = GetDatanodeInfoResponseProto.newBuilder()
        .setLocalInfo(PBHelper.convert(impl.getDatanodeInfo())).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
  return res;
}
项目:FlexMap    文件:ClientDatanodeProtocolTranslatorPB.java   
@Override
public DatanodeLocalInfo getDatanodeInfo() throws IOException {
  GetDatanodeInfoResponseProto response;
  try {
    response = rpcProxy.getDatanodeInfo(NULL_CONTROLLER, VOID_GET_DATANODE_INFO);
    return PBHelper.convert(response.getLocalInfo());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:FlexMap    文件:ClientDatanodeProtocolServerSideTranslatorPB.java   
public GetDatanodeInfoResponseProto getDatanodeInfo(RpcController unused,
    GetDatanodeInfoRequestProto request) throws ServiceException {
  GetDatanodeInfoResponseProto res;
  try {
    res = GetDatanodeInfoResponseProto.newBuilder()
        .setLocalInfo(PBHelper.convert(impl.getDatanodeInfo())).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
  return res;
}
项目:hadoop-on-lustre2    文件:ClientDatanodeProtocolTranslatorPB.java   
@Override
public DatanodeLocalInfo getDatanodeInfo() throws IOException {
  GetDatanodeInfoResponseProto response;
  try {
    response = rpcProxy.getDatanodeInfo(NULL_CONTROLLER, VOID_GET_DATANODE_INFO);
    return PBHelper.convert(response.getLocalInfo());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-on-lustre2    文件:ClientDatanodeProtocolServerSideTranslatorPB.java   
public GetDatanodeInfoResponseProto getDatanodeInfo(RpcController unused,
    GetDatanodeInfoRequestProto request) throws ServiceException {
  GetDatanodeInfoResponseProto res;
  try {
    res = GetDatanodeInfoResponseProto.newBuilder()
        .setLocalInfo(PBHelper.convert(impl.getDatanodeInfo())).build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
  return res;
}