Zero

Results 3 issues of Zero

Is there are way to define TaskExecutor in Spring Statemachine 3.0.1? in 2.7.5 we can `config .withConfiguration() .autoStartup(true) .taskExecutor(taskExecutor())` how todo in 3.0.1?

status/need-triage

my config like this : ` @Override public void configure(StateMachineStateConfigurer states) throws Exception { states.withStates() .initial("S1") .state("S2") .end("S3") .and() .withStates() .parent("S2") .initial("S2_1") .choice("S2_2") .state("S2_3") .state("S2_4") ; } @Override public void...

status/need-triage

here is my config: `public void configure(StateMachineStateConfigurer states) throws Exception { states.withStates() .initial("S1") .state("S2") .end("S3") .and() .withStates() .parent("S2") .initial("S2_1") .choice("S2_2") .end("S2_3") .end("S2_4") ; } @Override public void configure(StateMachineTransitionConfigurer transitions) throws...

status/need-triage