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

ASYNC Killable Even After Completed #168

Open
eric-corumdigital opened this issue Feb 5, 2019 · 0 comments
Open

ASYNC Killable Even After Completed #168

eric-corumdigital opened this issue Feb 5, 2019 · 0 comments

Comments

@eric-corumdigital
Copy link
Contributor

Currently, if a Fiber is PENDING and a kill occurs, whatever ASYNC step was running is considered killed — as far as bracket evaluation is concerned. This results in a temporal inconsistency.

A Fiber remains in PENDING even after the actual asynchronous side-effect has completed — marked by the invocation of the result callback. It is not until the Scheduler gets around to processing the result that the Fiber transitions out of PENDING. Therefore, when a bracket is evaluated, it is not evaluated based on whether the result callback has been invoked — thus the asynchronous side-effect has completed — but rather whether the scheduler got around to processing the result.

The temporal inconsistency is that an asynchronous side-effect may complete before a kill occurs, yet the outcome is as though the kill occurred before the side-effect completed. If the side-effect completes before a kill then it must be evaluated as though it completed, and the kill must be evaluated as though it occurred after.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging a pull request may close this issue.

1 participant