Eitanski
Results
2
issues of
Eitanski
I want that once an event is raised, and has started unblocking, the same event will not be raised, which means that the next workflow instance will block on this...
elsa 3
I have this very simple code: ``` public enum GenericState { Idle, Run, Jump } public enum Trigger { Fire, Release } ``` ``` var sm = Fsm.Builder(GenericState.Idle) .State(GenericState.Idle).TransitionTo(GenericState.Run).On(Trigger.Fire) .State(GenericState.Run).OnEnter(changeArgs...