I need some suggestions. I am trying to implement an online order process through Spring state machine and am trying to construct a state diagram before I get to work. Now say my order can be canceled by three different admin users CanceledByAdmin1,CanceledByAdmin2 and CanceledByAdmin3. Should I make them substate of Cancel state or create three different states? Keeping in mind that all canceled states are the final states and independent of each other, I don't know if making substates does anything other than simplifying the paper diagram. Any help would be appreciated.
Independent subtates in a state machine
397 Views Asked by user At
1
There are 1 best solutions below
Related Questions in SPRING
- Replacement for Dropbox datastore API?
- How to save multiple image files to dropbox using dropbox saver api?
- Dropbox issues not able to Upload a text file in Android
- dropbox php read file content
- Syncing Podio and Dropbox
- upload files to Dropbox from iOS app with Swift
- dropbox api authentication (Error: [400] 'invalid_client')
- How to append data to dynamic array and use the array in dropbox saver api?
- How to create dynamic array for pairs of data using javascript?
- Dropbox /delta ignoring cursor
Related Questions in STATE-MACHINE
- Replacement for Dropbox datastore API?
- How to save multiple image files to dropbox using dropbox saver api?
- Dropbox issues not able to Upload a text file in Android
- dropbox php read file content
- Syncing Podio and Dropbox
- upload files to Dropbox from iOS app with Swift
- dropbox api authentication (Error: [400] 'invalid_client')
- How to append data to dynamic array and use the array in dropbox saver api?
- How to create dynamic array for pairs of data using javascript?
- Dropbox /delta ignoring cursor
Related Questions in STATE-MACHINE-WORKFLOW
- Replacement for Dropbox datastore API?
- How to save multiple image files to dropbox using dropbox saver api?
- Dropbox issues not able to Upload a text file in Android
- dropbox php read file content
- Syncing Podio and Dropbox
- upload files to Dropbox from iOS app with Swift
- dropbox api authentication (Error: [400] 'invalid_client')
- How to append data to dynamic array and use the array in dropbox saver api?
- How to create dynamic array for pairs of data using javascript?
- Dropbox /delta ignoring cursor
Related Questions in SPRING-STATEMACHINE
- Replacement for Dropbox datastore API?
- How to save multiple image files to dropbox using dropbox saver api?
- Dropbox issues not able to Upload a text file in Android
- dropbox php read file content
- Syncing Podio and Dropbox
- upload files to Dropbox from iOS app with Swift
- dropbox api authentication (Error: [400] 'invalid_client')
- How to append data to dynamic array and use the array in dropbox saver api?
- How to create dynamic array for pairs of data using javascript?
- Dropbox /delta ignoring cursor
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
What comes for
Spring Statemachine
we can have only one terminate state and trying to make that as collection of substates is a bit awkward because once you enter it, state machine should stop all processing. Thought this area is something what I've probably overlooked and could try to enhance things.While you could probably have a state
S1
having three substatesS11/S11E
,S12/S12E
andS13/S13E
with triggerless transition fromS11
toS11E
and same with other substates, even this feels a bit weird because none of those would actually terminate root state machine.I guess question is what you're trying to accomplish?
If you only want to keep that information around who/which cancelled the order, could you use a simple single terminate state and during a transition to that terminate state, add/modify extended state variables with this info.
Extended state variables
are usually used to overcome these problems of suddenly having astronomical count of states to keep arbitrary information around. I know that in this example you only have three, but what about if you have 10, or 100? If you actually need to add even one more, you need to change state machine configuration and recompile. With extended state variables you would not need to do that.