use of org.apache.hadoop.mapreduce.v2.proto.MRServiceProtos.GetTaskAttemptCompletionEventsRequestProtoOrBuilder in project hadoop by apache.
the class GetTaskAttemptCompletionEventsRequestPBImpl method getJobId.
@Override
public JobId getJobId() {
GetTaskAttemptCompletionEventsRequestProtoOrBuilder p = viaProto ? proto : builder;
if (this.jobId != null) {
return this.jobId;
}
if (!p.hasJobId()) {
return null;
}
this.jobId = convertFromProtoFormat(p.getJobId());
return this.jobId;
}
Aggregations