Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(FSMBehavior): Prevent state changes out of FINAL state #336

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/org/arl/fjage/FSMBehavior.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ public void setInitialState(Object name) {
public void setNextState(Object name) {
State state = (name instanceof State) ? (State)name : states.get(name);
if (state == null) throw new FjageException("Unknown state: "+name);
if (next == FINAL) return;
next = state;
restart();
}
Expand All @@ -171,6 +172,7 @@ public void setNextState(Object name) {
* to be exited, and re-entered.
*/
public void reenterState() {
if (next == FINAL) return;
next = REENTER;
restart();
}
Expand Down
Loading