Parallel execution of orthogonal states

I have a state machine that has a pair of orthogonal states. These states react to the same event. When an event is dispatched through process_event

, a simple test tells me that it is being processed sequentially, even though the states are orthogonal to each other.

Is there a way to make these orthogonal states handle the event in parallel?

+3


source to share





All Articles