-
Notifications
You must be signed in to change notification settings - Fork 59
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
Cancelable task #77
Comments
Hi @dan-leech! Sorry for the late reply. From your example, it looks like you do want One thing to try is to model your domain objects using immutable data structures. Another thing you might want to try is A somewhat more involved approach is to capture all database operations in a I hope that helped, but I understand if the tips above are a bit too general to be immediately useful to you. Please reply with more detailed information about your use case if you want and maybe we can uncover something more concrete then! |
I'm a newbie in FP. FP seems very powerful but I cannot catch the idea yet...
I need to tie two repositories transactions which don't know nothing about each other.
I've found probably a strange way to do this:
I want to return a cancelable kind of task. That carries a possible result and can be rolled back from another task that this serves for.
Do you know any way how to do this in FP with dartz?
The text was updated successfully, but these errors were encountered: