We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If we are in a nested state method canAccept() returns false for transitions available from parent state.
canAccept()
false
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)); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If we are in a nested state method
canAccept()
returnsfalse
for transitions available from parent state.Workaround (subclass override):
The text was updated successfully, but these errors were encountered: