Java 类org.apache.hadoop.hdfs.protocol.proto.ClientNamenodeProtocolProtos.AddCachePoolRequestProto 实例源码

项目:hadoop    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public AddCachePoolResponseProto addCachePool(RpcController controller,
    AddCachePoolRequestProto request) throws ServiceException {
  try {
    server.addCachePool(PBHelper.convert(request.getInfo()));
    return AddCachePoolResponseProto.newBuilder().build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public void addCachePool(CachePoolInfo info) throws IOException {
  AddCachePoolRequestProto.Builder builder = 
      AddCachePoolRequestProto.newBuilder();
  builder.setInfo(PBHelper.convert(info));
  try {
    rpcProxy.addCachePool(null, builder.build());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:aliyun-oss-hadoop-fs    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public void addCachePool(CachePoolInfo info) throws IOException {
  AddCachePoolRequestProto.Builder builder =
      AddCachePoolRequestProto.newBuilder();
  builder.setInfo(PBHelperClient.convert(info));
  try {
    rpcProxy.addCachePool(null, builder.build());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:aliyun-oss-hadoop-fs    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public AddCachePoolResponseProto addCachePool(RpcController controller,
    AddCachePoolRequestProto request) throws ServiceException {
  try {
    server.addCachePool(PBHelperClient.convert(request.getInfo()));
    return AddCachePoolResponseProto.newBuilder().build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:big-c    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public AddCachePoolResponseProto addCachePool(RpcController controller,
    AddCachePoolRequestProto request) throws ServiceException {
  try {
    server.addCachePool(PBHelper.convert(request.getInfo()));
    return AddCachePoolResponseProto.newBuilder().build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:big-c    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public void addCachePool(CachePoolInfo info) throws IOException {
  AddCachePoolRequestProto.Builder builder = 
      AddCachePoolRequestProto.newBuilder();
  builder.setInfo(PBHelper.convert(info));
  try {
    rpcProxy.addCachePool(null, builder.build());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public AddCachePoolResponseProto addCachePool(RpcController controller,
    AddCachePoolRequestProto request) throws ServiceException {
  try {
    server.addCachePool(PBHelper.convert(request.getInfo()));
    return AddCachePoolResponseProto.newBuilder().build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop-2.6.0-cdh5.4.3    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public void addCachePool(CachePoolInfo info) throws IOException {
  AddCachePoolRequestProto.Builder builder = 
      AddCachePoolRequestProto.newBuilder();
  builder.setInfo(PBHelper.convert(info));
  try {
    rpcProxy.addCachePool(null, builder.build());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:FlexMap    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public AddCachePoolResponseProto addCachePool(RpcController controller,
    AddCachePoolRequestProto request) throws ServiceException {
  try {
    server.addCachePool(PBHelper.convert(request.getInfo()));
    return AddCachePoolResponseProto.newBuilder().build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:FlexMap    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public void addCachePool(CachePoolInfo info) throws IOException {
  AddCachePoolRequestProto.Builder builder = 
      AddCachePoolRequestProto.newBuilder();
  builder.setInfo(PBHelper.convert(info));
  try {
    rpcProxy.addCachePool(null, builder.build());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}
项目:hadoop-on-lustre2    文件:ClientNamenodeProtocolServerSideTranslatorPB.java   
@Override
public AddCachePoolResponseProto addCachePool(RpcController controller,
    AddCachePoolRequestProto request) throws ServiceException {
  try {
    server.addCachePool(PBHelper.convert(request.getInfo()));
    return AddCachePoolResponseProto.newBuilder().build();
  } catch (IOException e) {
    throw new ServiceException(e);
  }
}
项目:hadoop-on-lustre2    文件:ClientNamenodeProtocolTranslatorPB.java   
@Override
public void addCachePool(CachePoolInfo info) throws IOException {
  AddCachePoolRequestProto.Builder builder = 
      AddCachePoolRequestProto.newBuilder();
  builder.setInfo(PBHelper.convert(info));
  try {
    rpcProxy.addCachePool(null, builder.build());
  } catch (ServiceException e) {
    throw ProtobufHelper.getRemoteException(e);
  }
}