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
Resurrecting old proposal from @inamiy babylonhealth/ReactiveFeedback#41
This is an additive change to add Optional<Event> argument in Feedback so that unnecessary intermediate states will no longer be required.
Optional<Event>
Feedback
Event-driven feedback will be useful for following scenarios, without needing to add a new state and then transit (and transit back again):
This is a change from Moore model to (kind of) Mealy model as discussed in babylonhealth/ReactiveFeedback#32 (review) .
Please note that reducer and feedback are still in sequence, not parallel.
reducer
feedback
Also, please note that Optional<Event> is used here as a workaround since it requires more breaking changes to minimize into non-optional Event.
Event
The text was updated successfully, but these errors were encountered:
@andersio seems like we will need CasePath for that
CasePath
Sorry, something went wrong.
sergdort
No branches or pull requests
Resurrecting old proposal from @inamiy babylonhealth/ReactiveFeedback#41
This is an additive change to add
Optional<Event>
argument inFeedback
so that unnecessary intermediate states will no longer be required.Event-driven feedback will be useful for following scenarios, without needing to add a new state and then transit (and transit back again):
This is a change from Moore model to (kind of) Mealy model as discussed in babylonhealth/ReactiveFeedback#32 (review) .
Please note that
reducer
andfeedback
are still in sequence, not parallel.Also, please note that
Optional<Event>
is used here as a workaround since it requires more breaking changes to minimize into non-optionalEvent
.The text was updated successfully, but these errors were encountered: