mladendinev
mladendinev
This is my SMM configuration which I have : ``` @Override public void configure(StateMachineStateConfigurer states) throws Exception { states .withStates() .initial(States.CREATED) .state(States.STARTED .join(States.ALL_PROCESSES_COMPLETED) .state(States.PROCESSES) .and() .withStates() .parent(States.PROCESSES) .initial(States.CHECK_1) .state(States.CHECK_1) .end(States.CHECK_1_END)...
I'm processing a csv file with X number of columns which are not all mandatory i.e some of them are optional. ``` csv.asCsvReader[Foo](rfc.withHeader) object Foo { implicit val FooDecoder: HeaderDecoder[Foo]...