Example usage for org.apache.hadoop.yarn.api.records.impl.pb ApplicationIdPBImpl ApplicationIdPBImpl

List of usage examples for org.apache.hadoop.yarn.api.records.impl.pb ApplicationIdPBImpl ApplicationIdPBImpl

Introduction

In this page you can find the example usage for org.apache.hadoop.yarn.api.records.impl.pb ApplicationIdPBImpl ApplicationIdPBImpl.

Prototype

public ApplicationIdPBImpl(ApplicationIdProto proto) 

Source Link

Usage

From source file:org.apache.tajo.QueryId.java

License:Apache License

private ApplicationIdPBImpl convertFromProtoFormat(ApplicationIdProto p) {
    return new ApplicationIdPBImpl(p);
}

From source file:tajo.impl.pb.QueryIdPBImpl.java

License:Apache License

private ApplicationIdPBImpl convertFromProtoFormat(YarnProtos.ApplicationIdProto p) {
    return new ApplicationIdPBImpl(p);
}