<div dir="ltr">I would argue that given:<div><br></div><div><span style="color:rgb(80,0,80);font-size:12.8px">    foo()</span><br style="color:rgb(80,0,80);font-size:12.8px"><span style="color:rgb(80,0,80);font-size:12.8px">    await bar()</span><br style="color:rgb(80,0,80);font-size:12.8px"><span style="color:rgb(80,0,80);font-size:12.8px">    baz()</span><br></div><div><span style="color:rgb(80,0,80);font-size:12.8px"><br></span></div><div><span style="color:rgb(80,0,80);font-size:12.8px">That foo and baz should run on the same queue </span><span style="color:rgb(80,0,80);font-size:12.8px">(using queue in the GCD sense) </span><span style="color:rgb(80,0,80);font-size:12.8px">but bar should determine which queue it runs on. I say this because:</span></div><div><ol><li>foo and baz are running synchronously with respect to each other (though they could be running asynchronously with respect to some other process if all the lines shown are inside an async function).</li><li>bar is running asynchronously relative to foo and baz, potentially on a different queue.</li></ol>I say bar is potentially on a different queue because the user of bar, the person who wrote these 3 lines above, cannot be presumed to be the writer of foo, baz, and particularly not bar and therefore have no detailed knowledge about which queue is appropriate.</div><div><br><div>Therefore I would suggest either using a Future or expanding async so that you can say:</div></div><div><br></div><div>    func bar() async(qos: .userInitiated) { ... }</div><div><br></div><div>You also probably need the ability to specify a timeout and queue type, e.g.:</div><div><br></div><div>   func bar() async(type: .serial, qos: .utility, timeout: .seconds(10)) throws { ... }</div><div><br></div><div>If a timeout is specified then await would have to throw to enable the timeout, i.e. call would become:</div><div><br></div><div>   try await bar()</div><div><br></div><div>Defaults could be provided for qos (.default works well), timeout (1 second works well), and type (.concurrent works well).</div><div><br></div><div>However a Future does all this already :).</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature">  -- Howard.<br></div></div>
<br><div class="gmail_quote">On 7 September 2017 at 15:13, David Hart via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
<br>
&gt; On 7 Sep 2017, at 07:05, Chris Lattner via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;&gt; On Sep 5, 2017, at 7:31 PM, Eagle Offshore via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; OK, I&#39;ve been watching this thing for a couple weeks.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ve done a lot of GCD network code.  Invariably my completion method starts with<br>
&gt;&gt;<br>
&gt;&gt; dispatch_async(queue_want_to_<wbr>handle_this_on,....)<br>
&gt;&gt;<br>
&gt;&gt; Replying on the same queue would be nice I guess, only often all I need to do is update the UI in the completion code.<br>
&gt;&gt;<br>
&gt;&gt; OTOH, I have situations where the reply is complicated and I need to persist a lot of data, then update the UI.<br>
&gt;&gt;<br>
&gt;&gt; So honestly, any assumption you make about how this is supposed to work is going to be wrong about half the time unless....<br>
&gt;&gt;<br>
&gt;&gt; you let me specify the reply queue directly.<br>
&gt;&gt;<br>
&gt;&gt; That is the only thing that works all the time.  Even then, I&#39;m very apt to make the choice to do some of the work off the main thread and then queue up the minimal amount of work onto the main thread.<br>
&gt;<br>
&gt; I (think that I) understand what you’re saying here, but I don’t think that we’re talking about the same thing.<br>
&gt;<br>
&gt; You seem to be making an argument about what is most *useful* (being able to vector a completion handler to a specific queue), but I’m personally concerned about what is most *surprising* and therefore unnatural and prone to introduce bugs and misunderstandings by people who haven’t written the code.  To make this more concrete, shift from the “person who writes to code” to the “person who has to maintain someone else&#39;s code”:<br>
&gt;<br>
&gt; Imagine you are maintaining a large codebase, and you come across this (intentionally abstract) code:<br>
&gt;<br>
&gt;    foo()<br>
&gt;    await bar()<br>
&gt;    baz()<br>
&gt;<br>
&gt; Regardless of what is the most useful, I’d argue that it is only natural to expect baz() to run on the same queue/thread/execution-context as foo and bar.  If, in the same model, you see something like:<br>
&gt;<br>
&gt;    foo()<br>
&gt;    await bar()<br>
&gt;    anotherQueue.async {<br>
&gt;        baz()<br>
&gt;    }<br>
<br>
</span>Couldn’t it end up being:<br>
<br>
foo()<br>
await bar()<br>
await anotherQueue.async()<br>
// on another queue<br>
<div class="HOEnZb"><div class="h5"><br>
&gt; Then it is super clear what is going on: an intentional queue hop from whatever foo/bar are run on to anotherQueue.<br>
&gt;<br>
&gt; I interpret your email as arguing for something like this:<br>
&gt;<br>
&gt;    foo()<br>
&gt;    await(anotherQueue) bar()<br>
&gt;    baz()<br>
&gt;<br>
&gt; I’m not sure if that’s exactly the syntax you’re arguing for, but anything like this presents a number of challenges:<br>
&gt;<br>
&gt; 1) it is “just sugar” over the basic model, so we could argue to add it at any time (and would argue strongly to defer it out of this round of discussions).<br>
&gt;<br>
&gt; 2) We’d have to find a syntax that implies that baz() runs on anotherQueue, but bar() runs on the existing queue.  The syntax I sketched above does NOT provide this indication.<br>
&gt;<br>
&gt; -Chris<br>
&gt;<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
<br>
______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
</div></div></blockquote></div><br></div>