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

AbstractStateMachine.canAccept(E event) does not work for events acceptable from parent state #128

Open
azhuchkov opened this issue May 19, 2021 · 0 comments

Comments

@azhuchkov
Copy link

azhuchkov commented May 19, 2021

If we are in a nested state method canAccept() returns false for transitions available from parent state.

Workaround (subclass override):

  @Override
  public boolean canAccept(Object event) {
    ImmutableState<?, ?, ?, ?> testRawState = getCurrentRawState();
    if (testRawState == null) { // assuming auto_start enabled
      testRawState = getInitialRawState();
    }
    return canAccept(testRawState, event);
  }

  private boolean canAccept(ImmutableState<?, ?, ?, ?> state, Object event) {
    final ImmutableState<?, ?, ?, ?> parentState = state.getParentState();

    return state.getAcceptableEvents().contains(event) ||
           (parentState != null && canAccept(parentState, event));
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant