context-mapper-dsl icon indicating copy to clipboard operation
context-mapper-dsl copied to clipboard

More flexibility for modeling state transitions

Open socadk opened this issue 3 years ago • 0 comments

Context: Aggregate state changes caused by service/entity operations.

While write [S1-> S2x S3] and write [S2,S3-> S4] work I cannot model something like:

write [S1->S2,  S1->S3,  S2->S4, S3->S4]

My workaround is to model one operation per state transition, but the system that I model has a single updateStatus() interface that can cause arbitrary transitions.

socadk avatar Jul 08 '21 10:07 socadk