westonpace opened a new pull request #11084:
URL: https://github.com/apache/arrow/pull/11084


   This PR adds two new utilities.
   
   The first is an asynchronous smart pointer which makes it easier to ensure 
that asynchronous tasks are finished before an object is destroyed (and 
generally makes it safe to capture `this`)
   
   The second is an asynchronous task group which collects futures and can help 
to ensure that all futures are completed.  It is similar to AllComplete except 
it doesn't require collecting all the futures at once.
   
   Combined, these two things can help give structured concurrency / nursery 
type control over asynchronous operations.  I have used these utilities in 
#10955 if you would like to see an example of them in action.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to