Package org.springframework.yarn.batch.repository.bindings.exp

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


    req.executionId = executionId;
    return req;
  }

  public static GetStepExecutionReq buildGetStepExecutionReq(Long jobExecutionId, Long stepExecutionId) {
    GetStepExecutionReq req = new GetStepExecutionReq();
    req.jobExecutionId = jobExecutionId;
    req.stepExecutionId = stepExecutionId;
    return req;
  }
View Full Code Here


    return JobRepositoryRpcFactory.convertJobExecutionType(response.jobExecution);
  }

  @Override
  public StepExecution getStepExecution(Long jobExecutionId, Long stepExecutionId) {
    GetStepExecutionReq request = JobRepositoryRpcFactory.buildGetStepExecutionReq(jobExecutionId, stepExecutionId);
    GetStepExecutionRes response = (GetStepExecutionRes) getAppmasterScOperations().doMindRequest(request);
    return JobRepositoryRpcFactory.convertStepExecutionType(response.stepExecution);
  }
View Full Code Here

TOP

Related Classes of org.springframework.yarn.batch.repository.bindings.exp.GetStepExecutionReq

Copyright © 2018 www.massapicom. 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.