Guys: the main thing to keep in mind when programming with CML is that you can jut build your own sync abstractions easily. <div><br></div><div>In this case you would have a separate thread that mediates all access to one of these channels and that makes it easy to get such concerns right.</div>
<div><br></div><div>Don&#39;t just rely on the built in abstractions tho!<span></span><br><br>On Monday, August 12, 2013, Hendrik Boom  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Mon, Aug 12, 2013 at 04:11:14PM -0400, Eli Barzilay wrote:<br>
&gt; An easy way to get around such things is to add a level of<br>
&gt; indirection: wrap the original channel in another one where you<br>
&gt; implement your own peeking.<br>
<br>
Once you peek, if you decde that&#39;s not what you want, might you want to<br>
let independent threads peek the same element and decie they do want<br>
it?<br>
<br>
There&#39;s got to be some kind of rejecting release if a peek holds the<br>
stream until accepted.<br>
<br>
-- hendrik<br>
<br>
&gt;<br>
&gt;<br>
&gt; 10 minutes ago, Jonathan Schuster wrote:<br>
&gt; &gt; I discussed this with Vincent and Asumu today in person. Here are<br>
&gt; &gt; some of the results of our conversation:<br>
&gt; &gt;<br>
&gt; &gt; What I really want is a function like<br>
&gt; &gt; &quot;async-channel-non-empty-event&quot; that returns an event that&#39;s ready<br>
&gt; &gt; for synchronization when async-channel-get would not block (but the<br>
&gt; &gt; event does not consume a message). The predicate<br>
&gt; &gt; async-channel-empty? could also be useful for similar reasons.<br>
&gt; &gt;<br>
&gt; &gt; The naive implementation of a peek event doesn&#39;t work because of the<br>
&gt; &gt; following use case: On some thread (call it thread 1), the thread<br>
&gt; &gt; syncs on a peek event and gets the peeked value. Thread 1 decides it<br>
&gt; &gt; likes the value and attempts to pull it from the channel. However,<br>
&gt; &gt; at the same time another thread (thread 2) pulls out that value, so<br>
&gt; &gt; thread 1 ends up with a different value, which it doesn&#39;t know how<br>
&gt; &gt; to process. That use case needs a more complicated API that handles<br>
&gt; &gt; more of the thread synchronization. My own work doesn&#39;t involve this<br>
&gt; &gt; use case, though.<br>
&gt; &gt;<br>
&gt; &gt; For now, I&#39;m going to write something to act like a channel with a<br>
&gt; &gt; non-empty event, but do people think async-channel-non-empty and<br>
&gt; &gt; async-channel-get would be useful to have in Racket proper? If not,<br>
&gt; &gt; would there be interest in providing that functionality as a<br>
&gt; &gt; package?<br>
&gt;<br>
&gt; --<br>
&gt;           ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:<br>
&gt;                     <a href="http://barzilay.org/" target="_blank">http://barzilay.org/</a>                   Maze is Life!<br>
&gt; ____________________<br>
&gt;   Racket Users list:<br>
&gt;   <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</blockquote></div>