Examples of GetStepExecutionReq


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

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

    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
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.