use of org.apache.hadoop.yarn.proto.YarnProtos.QueueInfoProto in project hadoop by apache.
the class QueueInfoPBImpl method initLocalChildQueuesList.
private void initLocalChildQueuesList() {
if (this.childQueuesList != null) {
return;
}
QueueInfoProtoOrBuilder p = viaProto ? proto : builder;
List<QueueInfoProto> list = p.getChildQueuesList();
childQueuesList = new ArrayList<QueueInfo>();
for (QueueInfoProto a : list) {
childQueuesList.add(convertFromProtoFormat(a));
}
}
Aggregations