The Wayback Machine - https://web.archive.org/web/20201001205353/https://github.com/topics/structured-concurrency
Skip to content
#

structured-concurrency

Here are 11 public repositories matching this topic...

njsmith
njsmith commented May 18, 2020

What should happen if deliver_cancel raises an exception? In the current implementation, the shielded cancel scope will prevent it from propagating until the process exits, which might take a while if the crash occurred before signaling the process in any way. Maybe on exception from a user-specified deliver_cancel we should call the default deliver_cancel to kill the process? Or just kill() since

cowboyd
cowboyd commented Jul 8, 2020

It's very common to use "infinite" streams that have the same lifetime as the operation that consumes them. In fact, in the wild thus far, this is more common than actually having a meaningful return value. It's a pain then to have the Subscription interface always need to specify two generic parameters, T and TReturn every time. If most of the time a subscription is infinite, then it probab

Improve this page

Add a description, image, and links to the structured-concurrency topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the structured-concurrency topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.