Uses of Class
com.scivicslab.pojoactor.workflow.Transition
Packages that use Transition
-
Uses of Transition in com.scivicslab.pojoactor.workflow
Methods in com.scivicslab.pojoactor.workflow that return types with arguments of type TransitionModifier and TypeMethodDescriptionMatrixCode.getSteps()Returns the workflow transitions (alias for YAML 'steps' key).MatrixCode.getTransitions()Returns the workflow transitions.Methods in com.scivicslab.pojoactor.workflow with parameters of type TransitionModifier and TypeMethodDescriptionInterpreter.getToState(Transition transition) Gets the to-state from a transition.booleanInterpreter.matchesCurrentState(Transition transition) Checks if a transition's from-state matches the current state.protected voidInterpreter.onEnterTransition(Transition transition) Hook method called when entering a transition during workflow execution.protected voidInterpreter.onExitTransition(Transition transition, boolean success, ActionResult result) Hook method called after a transition completes (success or failure).Method parameters in com.scivicslab.pojoactor.workflow with type arguments of type TransitionModifier and TypeMethodDescriptionvoidMatrixCode.setSteps(List<Transition> steps) Sets the workflow transitions (alias for YAML 'steps' key).voidMatrixCode.setTransitions(List<Transition> transitions) Sets the workflow transitions.