-
Notifications
You must be signed in to change notification settings - Fork 177
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
Cancellable #785
Cancellable #785
Conversation
bd1988f
to
cb77bf1
Compare
The concept makes sense, but it would be nice to give this a clearer name since it doesn't make a promise cancelable. Rather it wraps a promise in a new, cancelable promise. Maybe |
@hcarty I agree that the name is not really good as is. The type of the function hints that it wraps the promise (rather than modify the promise in place) but the name should also hint at it. I like Anyway, I'll rename it to something like |
727e06d
to
a56c2a2
Compare
a56c2a2
to
79ba76a
Compare
So I actually made it point to the right test (thanks for spotting the error) and there's a bunch of failures where tests raise |
I think, in the worst case, you should be able to define the function using higher-level helpers like |
I implemented it with It doesn't fit with the |
Thanks! |
Fixes #782
This PR provides a new
cancelable : 'a t -> 'a t
function such thatcancelable p
is a promisep'
that is cancelable even ifp
isn't.I introduced a new constructor in
how_to_cancel
. I'm not 100% sure it is necessary but I couldn't find a way to do without it.