Package org.activiti.engine.impl.jobexecutor

Source Code of org.activiti.engine.impl.jobexecutor.DefaultFailedJobCommandFactory

package org.activiti.engine.impl.jobexecutor;

import org.activiti.engine.impl.cmd.DecrementJobRetriesCmd;
import org.activiti.engine.impl.interceptor.Command;


public class DefaultFailedJobCommandFactory implements FailedJobCommandFactory {

  public Command<Object> getCommand(String jobId, Throwable exception) {
    return new DecrementJobRetriesCmd(jobId, exception);
  }

}
TOP

Related Classes of org.activiti.engine.impl.jobexecutor.DefaultFailedJobCommandFactory

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.