1 package user.jobengine.server.instructions;
3 import user.jobengine.server.IJobEngine;
4 import user.jobengine.server.IJobRuntime;
6 public class CallJobStepInstruction extends Instruction {
8 public CallJobStepInstruction() {
11 public CallJobStepInstruction(int weight) {
16 public void execute(IJobEngine jobEngine, IJobRuntime jobRuntime) {
17 super.execute(jobEngine, jobRuntime);
18 jobEngine.executeCallJobStepInstruction(jobRuntime);