Interface JunctionTransitionConfigurer<S,E>

Type Parameters:
S - the type of state
E - the type of event
All Superinterfaces:
AnnotationConfigurerBuilder<StateMachineTransitionConfigurer<S,E>>
All Known Implementing Classes:
DefaultJunctionTransitionConfigurer

public interface JunctionTransitionConfigurer<S,E> extends AnnotationConfigurerBuilder<StateMachineTransitionConfigurer<S,E>>
TransitionConfigurer interface for configuring Transition from a junction pseudo state.
Author:
Janne Valkealahti
  • Method Details

    • source

      JunctionTransitionConfigurer<S,E> source(S source)
      Specify a source state S for this Transition.
      Parameters:
      source - the source state S
      Returns:
      configurer for chaining
    • first

      JunctionTransitionConfigurer<S,E> first(S target, Guard<S,E> guard)
      Specify a target state S as a first choice. This must be set.

      In normal if/else if/else this would represent if.

      Parameters:
      target - the target state
      guard - the guard for this choice
      Returns:
      configurer for chaining
    • first

      JunctionTransitionConfigurer<S,E> first(S target, Guard<S,E> guard, Action<S,E> action)
      Specify a target state S as a first choice associating an Action to outgoing vertex. This must be set.

      In normal if/else if/else this would represent if.

      Parameters:
      target - the target state
      guard - the guard for this choice
      action - the action
      Returns:
      configurer for chaining
    • first

      JunctionTransitionConfigurer<S,E> first(S target, Guard<S,E> guard, Action<S,E> action, Action<S,E> error)
      Specify a target state S as a first choice associating an Action to outgoing vertex. This must be set.

      In normal if/else if/else this would represent if.

      Parameters:
      target - the target state
      guard - the guard for this choice
      action - the action
      error - action that will be called if any unexpected exception is thrown by the action.
      Returns:
      configurer for chaining
    • then

      JunctionTransitionConfigurer<S,E> then(S target, Guard<S,E> guard)
      Specify a target state S as a then choice. This is optional. Multiple thens will preserve order.

      In normal if/else if/else this would represent else if.

      Parameters:
      target - the target state
      guard - the guard for this choice
      Returns:
      configurer for chaining
    • then

      JunctionTransitionConfigurer<S,E> then(S target, Guard<S,E> guard, Action<S,E> action)
      Specify a target state S as a then choice associating an Action to outgoing vertex. This is optional. Multiple thens will preserve order.

      In normal if/else if/else this would represent else if.

      Parameters:
      target - the target state
      guard - the guard for this choice
      action - the action
      Returns:
      configurer for chaining
    • then

      JunctionTransitionConfigurer<S,E> then(S target, Guard<S,E> guard, Action<S,E> action, Action<S,E> error)
      Specify a target state S as a then choice associating an Action to outgoing vertex. This is optional. Multiple thens will preserve order.

      In normal if/else if/else this would represent else if.

      Parameters:
      target - the target state
      guard - the guard for this choice
      action - the action
      error - action that will be called if any unexpected exception is thrown by the action.
      Returns:
      configurer for chaining
    • last

      Specify a target state S as a last choice. This must be set.

      In normal if/else if/else this would represent else.

      Parameters:
      target - the target state
      Returns:
      configurer for chaining
    • last

      JunctionTransitionConfigurer<S,E> last(S target, Action<S,E> action)
      Specify a target state S as a last choice associating an Action to outgoing vertex. This must be set.

      In normal if/else if/else this would represent else.

      Parameters:
      target - the target state
      action - the action
      Returns:
      configurer for chaining
    • last

      JunctionTransitionConfigurer<S,E> last(S target, Action<S,E> action, Action<S,E> error)
      Specify a target state S as a last choice associating an Action to outgoing vertex. This must be set.

      In normal if/else if/else this would represent else.

      Parameters:
      target - the target state
      action - the action
      error - action that will be called if any unexpected exception is thrown by the action.
      Returns:
      configurer for chaining