<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div name="messageBodySection">Isn’t async / await an evolution over Promises / Tasks / Futures? AFAIK in JS, any function that returns a promise can be ‘await’ upon, and underneath, to be able to await, a function has to return a promise. Marking a function async in JS, tells the consumer that some await are going on inside, and it’s impossible to use await outside of an async marked function. I believe swift is going that direction too. Futures / Promises are the foundation on which async / await can truly express as it formalizes the boxing of the result types.<br />
What would be interesting is async being based on a protocol FutureType for example, so you can bring your own library and yet, leverage async / await</div>
<div name="messageReplySection"><br />
On Aug 25, 2017, 20:50 -0400, Jonathan Hull &lt;jhull@gbis.com&gt;, wrote:<br />
<blockquote type="cite"><br class="" />
<div>
<blockquote type="cite" class="">
<div class="">On Aug 25, 2017, at 3:38 PM, Trevör Anne Denise &lt;<a href="mailto:trevor.annedenise@icloud.com" class="">trevor.annedenise@icloud.com</a>&gt; wrote:</div>
<br class="Apple-interchange-newline" />
<div class="">
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">=============================================================</div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">
<blockquote type="cite" class="">Jonathan Hull&#160;jhull at<span class="Apple-converted-space">&#160;</span><a href="http://gbis.com/" class="">gbis.com</a>&#160;</blockquote>
</div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">
<blockquote type="cite" class="">This looks somewhat similar to a future, but you can’t interact with it as a separate type of object. &#160;The value above is just a UIImage, but with a compiler flag/annotation that forces me to call await on it before it can be accessed/used. &#160;The compiler has a lot more freedom to optimize/reorganize things behind the scenes, because it doesn’t necessarily need to make an intermediate object.</blockquote>
</div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">
<div class=""></div>
<div class=""><br class="" /></div>
</div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">As for the message of Wallacy I'd be interested the pros and cons of hiding the implementation details ! :)</div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="" /></div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="" /></div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">
<div class=""></div>
<blockquote type="cite" class="">
<div class="">To prove (or potentially disprove) my assertion that this is not just sugar, how would you accomplish the following under the current proposal?</div>
<div class=""><br class="" /></div>
<div class=""><span class="Apple-tab-span" style="white-space: pre;"></span>let a = async longCalculationA()</div>
<div class=""><span class="Apple-tab-span" style="white-space: pre;"></span>let b = async longCalculationB() //b doesn’t wait for a to complete before starting</div>
<div class=""><span class="Apple-tab-span" style="white-space: pre;"></span>let c = async longCalculationC() //c doesn’t wait for a or b</div>
<div class=""><span class="Apple-tab-span" style="white-space: pre;"></span>let result = await combineCalculations(a: a, b: b, c: c) //waits until a, b, and c are all available</div>
</blockquote>
</div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class="" /></div>
<div class="" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">Would this be implemented differently than with Futures? I don't have much experience with concurrency, but I don't see how this would be handled differently than by using Futures, internally ? (at least for this case)</div>
<br class="Apple-interchange-newline" /></div>
</blockquote>
</div>
<br class="" />
<div class="">It looks/behaves very similar to futures, but would potentially be implemented differently. &#160;The main difference is that the resulting type is actually the desired type (instead of Future&lt;Type&gt;) with a compiler flag saying that it needs to call await to be used. &#160;Behind the scenes, this could be implemented as some sort of future, but the compiler has a lot more freedom to rearrange things to be much more efficient because there is no affordance for the user to introspect or cancel. So for example, it might actually change:</div>
<div class=""><br class="" /></div>
<div class=""><span class="Apple-tab-span" style="white-space:pre"></span>let image = async downloadImage()</div>
<div class=""><span class="Apple-tab-span" style="white-space:pre"></span>let size = await image.size</div>
<div class=""><br class="" /></div>
<div class="">to:</div>
<div class=""><br class="" /></div>
<div class=""><span class="Apple-tab-span" style="white-space:pre"></span>let size = await downloadImage().size</div>
<div class=""><br class="" /></div>
<div class="">This would depend on the other code around it, but the compiler has much more freedom to avoid creating intermediate values, or even to create different types of intermediate values which are more efficient for the situation at hand.</div>
<div class=""><br class="" /></div>
<div class="">Given that as a base, it would be trivial to create a framework offering true Futures (which allow cancelling, etc…)</div>
<div class=""><br class="" /></div>
<div class="">Thanks,</div>
<div class="">Jon</div>
<div class=""><br class="" /></div>
</blockquote>
</div>
</body>
</html>