org.jbpm.sim.jpdl.SimulationHandler Maven / Gradle / Ivy
package org.jbpm.sim.jpdl;
import org.jbpm.graph.exe.ExecutionContext;
/**
* If an ActionHandler implements this interface, this method is executed instead
* of the ActionHandler.execute method.
*
* Please note: Even if a action is not configured with 'simulation=skip',
* the simExecute method is executed, if your ActionHandler implements the
* this interface.
*
* @author [email protected]
*/
public interface SimulationHandler {
public void simExecute(ExecutionContext executionContext);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy