Interface ForkTransitionConfigurer<S,E>
- Type Parameters:
S
- the type of stateE
- the type of event
- All Superinterfaces:
AnnotationConfigurerBuilder<StateMachineTransitionConfigurer<S,
E>>
- All Known Implementing Classes:
DefaultForkTransitionConfigurer
public interface ForkTransitionConfigurer<S,E>
extends AnnotationConfigurerBuilder<StateMachineTransitionConfigurer<S,E>>
TransitionConfigurer
interface for configuring Transition
from a fork pseudo state.-
Method Summary
Modifier and TypeMethodDescriptionSpecify a source stateS
for thisTransition
.Specify a target stateS
for thisTransition
.Methods inherited from interface org.springframework.statemachine.config.common.annotation.AnnotationConfigurerBuilder
and
-
Method Details
-
source
Specify a source stateS
for thisTransition
.- Parameters:
source
- the source stateS
- Returns:
- configurer for chaining
-
target
Specify a target stateS
for thisTransition
.- Parameters:
target
- the target stateS
- Returns:
- configurer for chaining
-