-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Paul Evans edited this page Dec 6, 2017
·
5 revisions
This will be a living document that will get updated every Thursday evening to account for any contributions or advancements made on the project until it is no longer deemed necessary.
- Read through the questions and comments posed here.
- Research and help find documentation or answers for any of the questions posed here.
- Provide use cases (good edge cases, etc.) to test against BANANA example
You can respond with comments here, emails directly to Paul Evans, RT tickets, IRC chat, or really, any other method of communication you like.
Anyway that you can find to contribute to the project would be appreciated.
- How do you communicate context (list/scalar/void) into an
async
sub? - How should
local
behave aroundasync
/await
deferral?
- Expand the implementation of
await
on non-readyFuture
s:- Consider the save stack - how should
local
even work though? See above
- Consider the save stack - how should
- Clean up the memory leaks
(A long-overdue update so some of this is old news)
- A release now works fine on 5.24 and above.
- Work ongoing trying to consider 5.22 and earlier - the context stack changes are making that tricky
- RT #121264 was entered to fix dependencies. Will be remedied soon.
- A few attempts to implement
await
on non-readyFuture
s were made but a working solution is yet to present itself.
- Added
Future
as a dependency which will solve RT #121264 - Made initial inroads into a deferred-CV with suspend and resume pairs, to implement awaiting. It works for a few trivial unit-test cases but will still fail for many real-world examples.