Examples of GetJobInstanceRes


Examples of org.springframework.yarn.batch.repository.bindings.exp.GetJobInstanceRes

  @Override
  public JobInstance getJobInstance(Long instanceId) {
    JobInstance jobInstance = null;
    try {
      GetJobInstanceReq request = JobRepositoryRpcFactory.buildGetJobInstanceReq(instanceId);
      GetJobInstanceRes response = (GetJobInstanceRes) getAppmasterScOperations().doMindRequest(request);
      jobInstance = JobRepositoryRpcFactory.convertJobInstanceType(response.jobInstance);
    } catch (Exception e) {
      throw convertException(e);
    }
    return jobInstance;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.