Java 类org.apache.hadoop.hbase.protobuf.generated.MasterProtos.DeleteColumnResponse 实例源码

项目:ditb    文件:MasterRpcServices.java   
@Override
public DeleteColumnResponse deleteColumn(RpcController controller,
    DeleteColumnRequest req) throws ServiceException {
  try {
    master.deleteColumn(
      ProtobufUtil.toTableName(req.getTableName()),
      req.getColumnName().toByteArray(),
      req.getNonceGroup(),
      req.getNonce());
  } catch (IOException ioe) {
    throw new ServiceException(ioe);
  }
  return DeleteColumnResponse.newBuilder().build();
}
项目:pbase    文件:MasterRpcServices.java   
@Override
public DeleteColumnResponse deleteColumn(RpcController controller,
    DeleteColumnRequest req) throws ServiceException {
  try {
    master.deleteColumn(ProtobufUtil.toTableName(req.getTableName()),
      req.getColumnName().toByteArray());
  } catch (IOException ioe) {
    throw new ServiceException(ioe);
  }
  return DeleteColumnResponse.newBuilder().build();
}
项目:HIndex    文件:HMaster.java   
@Override
public DeleteColumnResponse deleteColumn(RpcController controller, DeleteColumnRequest req)
throws ServiceException {
  try {
    deleteColumn(ProtobufUtil.toTableName(req.getTableName()),
        req.getColumnName().toByteArray());
  } catch (IOException ioe) {
    throw new ServiceException(ioe);
  }
  return DeleteColumnResponse.newBuilder().build();
}
项目:PyroDB    文件:MasterRpcServices.java   
@Override
public DeleteColumnResponse deleteColumn(RpcController controller,
    DeleteColumnRequest req) throws ServiceException {
  try {
    master.deleteColumn(ProtobufUtil.toTableName(req.getTableName()),
      req.getColumnName().toByteArray());
  } catch (IOException ioe) {
    throw new ServiceException(ioe);
  }
  return DeleteColumnResponse.newBuilder().build();
}
项目:c5    文件:HMaster.java   
@Override
public DeleteColumnResponse deleteColumn(RpcController controller, DeleteColumnRequest req)
throws ServiceException {
  try {
    deleteColumn(ProtobufUtil.toTableName(req.getTableName()),
        req.getColumnName().toByteArray());
  } catch (IOException ioe) {
    throw new ServiceException(ioe);
  }
  return DeleteColumnResponse.newBuilder().build();
}