org.apache.hadoop.yarn.proto.ApplicationHistoryServerProtos.ContainerStartDataProto Java Examples

The following examples show how to use org.apache.hadoop.yarn.proto.ApplicationHistoryServerProtos.ContainerStartDataProto. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ContainerStartDataPBImpl.java    From ambari-metrics with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataPBImpl() {
  builder = ContainerStartDataProto.newBuilder();
}
 
Example #2
Source File: ContainerStartDataPBImpl.java    From ambari-metrics with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataPBImpl(ContainerStartDataProto proto) {
  this.proto = proto;
  viaProto = true;
}
 
Example #3
Source File: ContainerStartDataPBImpl.java    From ambari-metrics with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataProto getProto() {
  mergeLocalToProto();
  proto = viaProto ? proto : builder.build();
  viaProto = true;
  return proto;
}
 
Example #4
Source File: ContainerStartDataPBImpl.java    From ambari-metrics with Apache License 2.0 4 votes vote down vote up
private void maybeInitBuilder() {
  if (viaProto || builder == null) {
    builder = ContainerStartDataProto.newBuilder(proto);
  }
  viaProto = false;
}
 
Example #5
Source File: ContainerStartDataPBImpl.java    From hadoop with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataPBImpl() {
  builder = ContainerStartDataProto.newBuilder();
}
 
Example #6
Source File: ContainerStartDataPBImpl.java    From hadoop with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataPBImpl(ContainerStartDataProto proto) {
  this.proto = proto;
  viaProto = true;
}
 
Example #7
Source File: ContainerStartDataPBImpl.java    From hadoop with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataProto getProto() {
  mergeLocalToProto();
  proto = viaProto ? proto : builder.build();
  viaProto = true;
  return proto;
}
 
Example #8
Source File: ContainerStartDataPBImpl.java    From hadoop with Apache License 2.0 4 votes vote down vote up
private void maybeInitBuilder() {
  if (viaProto || builder == null) {
    builder = ContainerStartDataProto.newBuilder(proto);
  }
  viaProto = false;
}
 
Example #9
Source File: FileSystemApplicationHistoryStore.java    From hadoop with Apache License 2.0 4 votes vote down vote up
private static ContainerStartData parseContainerStartData(byte[] value)
    throws InvalidProtocolBufferException {
  return new ContainerStartDataPBImpl(
    ContainerStartDataProto.parseFrom(value));
}
 
Example #10
Source File: ContainerStartDataPBImpl.java    From big-c with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataPBImpl() {
  builder = ContainerStartDataProto.newBuilder();
}
 
Example #11
Source File: ContainerStartDataPBImpl.java    From big-c with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataPBImpl(ContainerStartDataProto proto) {
  this.proto = proto;
  viaProto = true;
}
 
Example #12
Source File: ContainerStartDataPBImpl.java    From big-c with Apache License 2.0 4 votes vote down vote up
public ContainerStartDataProto getProto() {
  mergeLocalToProto();
  proto = viaProto ? proto : builder.build();
  viaProto = true;
  return proto;
}
 
Example #13
Source File: ContainerStartDataPBImpl.java    From big-c with Apache License 2.0 4 votes vote down vote up
private void maybeInitBuilder() {
  if (viaProto || builder == null) {
    builder = ContainerStartDataProto.newBuilder(proto);
  }
  viaProto = false;
}
 
Example #14
Source File: FileSystemApplicationHistoryStore.java    From big-c with Apache License 2.0 4 votes vote down vote up
private static ContainerStartData parseContainerStartData(byte[] value)
    throws InvalidProtocolBufferException {
  return new ContainerStartDataPBImpl(
    ContainerStartDataProto.parseFrom(value));
}